#ABC155F. Perils in Parallel
Perils in Parallel
题目描述
After being invaded by the Kingdom of AlDebaran, bombs are planted throughout our country, AtCoder Kingdom.
Fortunately, our military team called ABC has managed to obtain a device that is a part of the system controlling the bombs.
There are bombs, numbered to , planted in our country. Bomb is planted at the coordinate . It is currently activated if , and deactivated if .
The device has cords numbered to . If we cut Cord , the states of all the bombs planted between the coordinates and (inclusive) will be switched - from activated to deactivated, and vice versa.
Determine whether it is possible to deactivate all the bombs at the same time. If the answer is yes, output a set of cords that should be cut.
在被德巴兰王国入侵后,我们的国家 AtCoder Kingdom 全境都被安放了炸弹。
幸运的是,我们名为 ABC 的军事小组设法获得了一个装置,它是控制炸弹系统的一部分。
我国境内共有 枚炸弹,编号为 至 。炸弹 安装在坐标 处。如果 激活, 则解除。
该装置有 根电线,编号为 至 。如果我们切断 号线,那么在坐标 和 (含)之间放置的所有炸弹的状态都将发生转换--从激活状态变为停用状态,反之亦然。
判断是否有可能同时解除所有炸弹。如果答案是肯定的,则输出一组应剪断的线缆。
输入格式
输入内容按以下格式标准输入:
输出格式
如果无法同时拆除所有炸弹,则打印 -1
。如果可以做到,则打印一组应剪断的绳索,如下所示:
$k$
$c_1$ $c_2$ $\dots$ $c_k$
这里, 是绳索的数量(可能是 ), 代表应剪断的绳索。 必须保持。
样例 #1
样例输入 #1
3 4
5 1
10 1
8 0
1 10
4 5
6 7
8 9
样例输出 #1
2
1 4
样例 #2
样例输入 #2
4 2
2 0
3 1
5 1
7 0
1 4
4 7
样例输出 #2
-1
样例 #3
样例输入 #3
3 2
5 0
10 0
8 0
6 9
66 99
样例输出 #3
0
样例 #4
样例输入 #4
12 20
536130100 1
150049660 1
79245447 1
132551741 0
89484841 1
328129089 0
623467741 0
248785745 0
421631475 0
498966877 0
43768791 1
112237273 0
21499042 142460201
58176487 384985131
88563042 144788076
120198276 497115965
134867387 563350571
211946499 458996604
233934566 297258009
335674184 555985828
414601661 520203502
101135608 501051309
90972258 300372385
255474956 630621190
436210625 517850028
145652401 192476406
377607297 520655694
244404406 304034433
112237273 359737255
392593015 463983307
150586788 504362212
54772353 83124235
样例输出 #4
5
1 7 8 9 11
说明
数据规模与约定
- 所有输入值均为整数。
- 是成对的不同值。
- 是 或 。
样例 解释
在坐标 处有两个已激活的炸弹,在坐标 处有一个未激活的炸弹。
切断 线可以切换坐标 和 之间所有炸弹的状态,也就是切换所有三个炸弹的状态。
割线 切换了坐标 和 之间所有炸弹的状态,也就是炸弹 的状态。
因此,我们可以通过剪断 和 来解除所有炸弹。
样例 解释
切断任何一组绳索都不会同时解除所有炸弹。
样例 解释
所有炸弹都已停用,因此我们不需要剪断任何线缆。
样例 解释
如果有多组绳索,剪断后所有炸弹都会失效,则可以打印其中任何一组。