zoukankan      html  css  js  c++  java
  • CodeForces 441 A. Valera and Antique Items

    纯粹练JAVA....

    A. Valera and Antique Items
    time limit per test
    1 second
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    Valera is a collector. Once he wanted to expand his collection with exactly one antique item.

    Valera knows n sellers of antiques, the i-th of them auctioned ki items. Currently the auction price of the j-th object of the i-th seller issij. Valera gets on well with each of the n sellers. He is perfectly sure that if he outbids the current price of one of the items in the auction (in other words, offers the seller the money that is strictly greater than the current price of the item at the auction), the seller of the object will immediately sign a contract with him.

    Unfortunately, Valera has only v units of money. Help him to determine which of the n sellers he can make a deal with.

    Input

    The first line contains two space-separated integers n, v (1 ≤ n ≤ 50; 104 ≤ v ≤ 106) — the number of sellers and the units of money the Valera has.

    Then n lines follow. The i-th line first contains integer ki (1 ≤ ki ≤ 50) the number of items of the i-th seller. Then go ki space-separated integers si1, si2, ..., siki (104 ≤ sij ≤ 106) — the current prices of the items of the i-th seller.

    Output

    In the first line, print integer p — the number of sellers with who Valera can make a deal.

    In the second line print p space-separated integers q1, q2, ..., qp (1 ≤ qi ≤ n) — the numbers of the sellers with who Valera can make a deal. Print the numbers of the sellers in the increasing order.

    Sample test(s)
    input
    3 50000
    1 40000
    2 20000 60000
    3 10000 70000 190000
    
    output
    3
    1 2 3
    
    input
    3 50000
    1 50000
    3 100000 120000 110000
    3 120000 110000 120000
    
    output
    0
    
    
    Note

    In the first sample Valera can bargain with each of the sellers. He can outbid the following items: a 40000 item from the first seller, a20000 item from the second seller, and a 10000 item from the third seller.

    In the second sample Valera can not make a deal with any of the sellers, as the prices of all items in the auction too big for him.




    import java.util.*;
    
    public class Main
    {
    	public static void main(String[] args)
    	{
    		Scanner cin=new Scanner(System.in);
    		int n=cin.nextInt(),v=cin.nextInt();
    		int count=0; 
    		StringBuilder ans= new StringBuilder();
    		for(int lll=0;lll<n;lll++)
    		{
    			int k=cin.nextInt();
    			boolean flag=false;
    			for(int i=0;i<k;i++)
    			{
    				int temp=cin.nextInt();
    				if(temp<v)
    				{
    					flag=true;
    				}
    			}
    			if(flag)
    			{
    				count++;
    				ans.append((lll+1)+" ");
    			}
    		}
    		System.out.println(count);
    		System.out.println(ans.toString().trim());
    	}
    }



    版权声明:来自: 代码代码猿猿AC路 http://blog.csdn.net/ck_boss

  • 相关阅读:
    【转】【矩阵】坐标的矩阵变换
    cocos2d-x聊天气泡
    lua自用的函数收集
    lua错误收集
    cocos2d-x中CCEditbox导出到lua
    love2d杂记9--光照效果
    (转)love2d有用的辅助库--gamework
    XPath语法 在C#中使用XPath示例
    WCF的CommunicationObjectFaultedException异常问题
    WCF绑定(Binding)
  • 原文地址:https://www.cnblogs.com/yxwkf/p/4742595.html
Copyright © 2011-2022 走看看