A10262 | Bulbs
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
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.
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.
输入格式
The first line of the input contains integers $n$ and $m$ ( $1<=n,m<=100$ ) — the number of buttons and the number of bulbs respectively.
Each of the next $n$ lines contains $x_{i}$ ( $0<=x_{i}<=m$ ) — the number of bulbs that are turned on by the $i$ -th button, and then $x_{i}$ numbers $y_{ij}$ ( $1<=y_{ij}<=m$ ) — the numbers of these bulbs.
Each of the next $n$ lines contains $x_{i}$ ( $0<=x_{i}<=m$ ) — the number of bulbs that are turned on by the $i$ -th button, and then $x_{i}$ numbers $y_{ij}$ ( $1<=y_{ij}<=m$ ) — the numbers of these bulbs.
输出格式
If it's possible to turn on all $m$ bulbs print "YES", otherwise print "NO".
输入输出样例
输入 #1
3 4 2 1 4 3 1 3 1 1 2
输出 #1
YES
输入 #2
3 3 1 1 1 2 1 1
输出 #2
NO
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.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted