【codeforces】Bulbs

本文介绍了一个关于通过按按钮来点亮所有圣诞灯泡的问题,并提供了一段C语言代码实现。问题中涉及n个按钮和m个初始关闭的灯泡,每个按钮可以开启一组特定的灯泡。目标是判断是否能通过按下某些按钮使所有灯泡都亮起。
Bulbs
Time Limit:1000MS     Memory Limit:262144KB     64bit IO Format:%I64d & %I64u

Description

Vasya wants to turn on Christmas lights consisting of m bulbs. Initially, all bulbs are turned off. There are n buttons, each of them is connected to some set of bulbs. Vasya can press any of these buttons. When the button is pressed, it turns on all the bulbs it's connected to. Can Vasya light up all the bulbs?

If Vasya presses the button such that some bulbs connected to it are already turned on, they do not change their state, i.e. remain turned on.

Input

The first line of the input contains integers n and m (1 ≤ n, m ≤ 100) — the number of buttons and the number of bulbs respectively.

Each of the next n lines contains xi (0 ≤ xi ≤ m) — the number of bulbs that are turned on by the i-th button, and then xi numbers yij (1 ≤ yij ≤ m) — the numbers of these bulbs.

Output

If it's possible to turn on all m bulbs print "YES", otherwise print "NO".

Sample Input

Input
3 4
2 1 4
3 1 3 1
1 2
Output
YES
Input
3 3
1 1
1 2
1 1
Output
NO
     
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#include<stdio.h>
int main()
{
	int p[100];
	int n,m;
	while(scanf("%d%d",&n,&m)!=EOF)
	{
	        for(int i=1;i<=m;i++)
			p[i]=0;//所有灯泡为关闭状态
		for(int i=1;i<=n;i++)
		{
			int t,j;
			scanf("%d",&t);
			while(t--)
			{
				scanf("%d",&j);
				p[j]=1;//开灯
			}	
		}
		int l=1;
	for(int i=1;i<=m;i++)
	{
		if(p[i]==0)//判断是否有的灯泡没打开
	  {
		l=0;
		break;}
	}	
	if(l==1)
	printf("YES\n");
	else
	printf("NO\n");
	}
	return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值