Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Hey guys this code is in python. Vasya wants to turn on Christmas lights consisting of m bulbs. Initially, all bulbs are turned off. There

Hey guys this code is in python.

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

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

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

Output

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

Examples

input

Copy

3 4 2 1 4 3 1 3 1 1 2 

output

Copy

YES 

input

Copy

3 3 1 1 1 2 1 1 

output

Copy

NO 

Note

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.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Intelligent Information And Database Systems Third International Conference Achids 2011 Daegu Korea April 2011 Proceedings Part 2 Lnai 6592

Authors: Ngoc Thanh Nguyen ,Chong-Gun Kim ,Adam Janiak

2011th Edition

3642200419, 978-3642200410

More Books

Students also viewed these Databases questions

Question

state what is meant by the term performance management

Answered: 1 week ago