Vasya wants to turn on Christmas lights consisting of m bulbs. Initially, all bulbs are turned off. There aren 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.
The first line of the input contains integers n andm (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 thei-th button, and then xi numbers yij (1 ≤ yij ≤ m) — the numbers of these bulbs.
If it's possible to turn on all m bulbs print "YES", otherwise print "NO".
3 4 2 1 4 3 1 3 1 1 2
YESInput3 3 1 1 1 2 1 1OutputNONoteIn the first sample you can press each button once and turn on all the bulbs. In the 2 sample it is impossible to turn on the 3-rd lamp.
#include<bits/stdc++.h> using namespace std; const int maxn = 200; int a[maxn]; int main() { int n,m; cin>>n>>m; int num; while(n--) { cin>>num; while(num--) { int i; cin>>i; a[i] = 1; } } int ans= 0; for(int i = 1; i <= m; i++) { ans += a[i]; } if(ans == m) cout<<"YES"<<endl; else cout<<"NO"<<endl; }
直接打表就可以了
python代码;
# _*_ coding:utf-8 _*_
import sys
a = [0 for i in range(200)]
b = []
n,m = map(int, sys.stdin.readline().split())
while n >=1 :
b = map(int, sys.stdin.readline().split())
for i in range(b[0]) :
a[b[i+1]] = 1;
n -= 1
ans = 0
for i in range(1, m+1):
ans += a[i]
print 'YES' if ans == m else 'NO'
c++ 代码