CodeForces615A-Bulbs-模拟

水题

 1 #include <cstdio>
 2 #include <algorithm>
 3 
 4 using namespace std;
 5 
 6 int N,M,save[1000];
 7 
 8 int main()
 9 {
10     scanf("%d%d",&N,&M);
11     for(int i=0,t,tt;i<N;i++)
12     {
13         scanf("%d",&t);
14         for(int j=0;j<t;j++)
15         {
16             scanf("%d",&tt);
17             save[tt] = 1;
18         }
19     }
20     for(int i=1;i<=M;i++)
21     {
22         if(save[i] == 0)
23         {
24             printf("NO\n");
25             return 0;
26         }
27     }
28     printf("YES\n");
29     return 0;
30 }

 

posted @ 2016-02-22 13:28  Helica  阅读(239)  评论(0编辑  收藏  举报