CodeForces615A-Bulbs-

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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 }

 

以上是关于CodeForces615A-Bulbs-的主要内容,如果未能解决你的问题,请参考以下文章

Codeforces Round #615 (Div. 3) A-F简要题解

# Codeforces Round #615 (Div. 3)

Codeforces Round 615 div3 Solution

Codeforces Round #615(Div.3)解题报告

Codeforces Round #615 (Div. 3)

CodeForces615B-Longtail Hedgehog-dp/图