zoukankan      html  css  js  c++  java
  • Codeforces Round #217 (Div. 2)B. Berland Bingo

    Lately, a national version of a bingo game has become very popular in Berland. There are n players playing the game, each player has a card with numbers. The numbers on each card are distinct, but distinct cards can have equal numbers. The card of the i-th player contains mi numbers.

    During the game the host takes numbered balls one by one from a bag. He reads the number aloud in a high and clear voice and then puts the ball away. All participants cross out the number if it occurs on their cards. The person who crosses out all numbers from his card first, wins. If multiple people cross out all numbers from their cards at the same time, there are no winners in the game. At the beginning of the game the bag contains 100 balls numbered 1 through 100, the numbers of all balls are distinct.

    You are given the cards for each player. Write a program that determines whether a player can win the game at the most favorable for him scenario or not.

    Input

    The first line of the input contains integer n (1 ≤ n ≤ 100) — the number of the players. Then follow n lines, each line describes a player's card. The line that describes a card starts from integer mi (1 ≤ mi ≤ 100) that shows how many numbers the i-th player's card has. Then follows a sequence of integers ai, 1, ai, 2, ..., ai, mi (1 ≤ ai, k ≤ 100) — the numbers on the i-th player's card. The numbers in the lines are separated by single spaces.

    It is guaranteed that all the numbers on each card are distinct.

    Output

    Print n lines, the i-th line must contain word "YES" (without the quotes), if the i-th player can win, and "NO" (without the quotes) otherwise.

    Sample test(s)
    input
    3
    1 1
    3 2 4 1
    2 10 11
    output
    YES
    NO
    YES
    input
    2
    1 1
    1 1
    output
    NO
    NO


    #include<stdio.h>
    #include<string.h>
    #define maxc 120
    
    int m[maxc],b[maxc][maxc],c[maxc],n;
    int ok ()
    {  int count=0;
    	for(int i=1;i<=n;i++)
    	//printf("+%d-%d+
    ",c[i],m[i]);
    	if(c[i]==m[i])count++;
    	if(count==1)printf("YES
    ");
    	else printf("NO
    ");
    }
    int find (int x)
    {
    	for(int i=1;i<=n;i++)
    	for(int j=1;j<=m[i];j++)
    	{
    		if(b[i][j]==x)c[i]++;
    	}
    }
    int main ()
    {
    	while(scanf("%d",&n)!=EOF)
    	{
    		for(int i=1;i<=n;i++)
    		{
    		   scanf("%d",&m[i]);
    		   for(int j=1;j<=m[i];j++)
    		   scanf("%d",&b[i][j]);
    		}
    		for(int i=1;i<=n;i++)
    		{  memset(c,0,sizeof(c));
    		   for(int j=1;j<=m[i];j++)
    		     find(b[i][j]);
    		     ok();
    		}
    	}
    }
    

      

  • 相关阅读:
    PyCharm设置Python版本,你肯定不知道!
    Python学习笔记之二——Python的运行机制,一般人肯定不会
    Django开发登录功能实战
    Python基础语法总结【新手必学】
    Python爬虫实现抓取腾讯视频所有电影【实战必学】
    委托和事件:要注意的事项
    asp.net网页防刷新重复提交、防后退解决办法!
    重新复习基础使用的网上资料
    JS和CS互访【后台前台代码调用JavaScript变量以及JavaScript调用代码变量】
    重新学习基础:草稿3(2)【后续】
  • 原文地址:https://www.cnblogs.com/ace-top/p/3466877.html
Copyright © 2011-2022 走看看