Codeforces Round #338 (Div. 2) A. Bulbs
A. Bulbs
問題
電球が$n$個、ボタンが$m$個ある。 ボタン$i$を押すと、電球$y_{i,j}$($0 \le j \lt x_i$)が点く。 全ての電球を点けることはできるか。
実装
#!/usr/bin/env python3
n, m = map(int,input().split())
used = [False] * m
for i in range(n):
x, *ys = map(int,input().split())
for y in ys:
used[y-1] = True
print(['NO','YES'][all(used)])