2534.Bulbs

Time Limit: 1s Memory Limit: 256MB

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 Format(From the terminal/stdin)

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

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

Output Format(To the terminal/stdout)

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

Sample Input 1

Copy
3 4
2 1 4
3 1 3 1
1 2
 · \n
 · · \n
 · · · \n
 · \n

Sample Output 1

Copy
YES
   \n

Sample Input 2

Copy
3 3
1 1
1 2
1 1
 · \n
 · \n
 · \n
 · \n

Sample Output 2

Copy
NO
  \n

Hints

In 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.

Submit

请先 登录

© 2025 FAQs