CF1045A.Last chance
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
It is the year 2969. 1000 years have passed from the moon landing. Meanwhile, the humanity colonized the Hyperspace™ and lived in harmony.
Until we realized that we were not alone.
Not too far away from the Earth, the massive fleet of aliens' spaceships is preparing to attack the Earth. For the first time in a while, the humanity is in real danger. Crisis and panic are everywhere. The scientists from all around the solar system have met and discussed the possible solutions. However, no progress has been made.
The Earth's last hope is YOU!
Fortunately, the Earth is equipped with very powerful defense systems made by MDCS. There are N aliens' spaceships which form the line. The defense system consists of three types of weapons:
- SQL rockets – every SQL rocket can destroy at most one spaceship in the given set.
- Cognition beams – every Cognition beam has an interval [l,r] and can destroy at most one spaceship in that interval.
- OMG bazooka – every OMG bazooka has three possible targets, however, each bazooka can destroy either zero or exactly two spaceships. In addition, due to the smart targeting system, the sets of the three possible targets of any two different OMG bazookas are disjoint (that means that every ship is targeted with at most one OMG bazooka).
Your task is to make a plan of the attack which will destroy the largest possible number of spaceships. Every destroyed spaceship should be destroyed with exactly one weapon.
输入格式
The first line contains two integers: the number of your weapons N (1≤N≤5000) and the number of spaceships M (1≤M≤5000) .
In the next N lines, each line starts with one integer that represents type (either 0, 1 or 2). If the type is 0, then the weapon is SQL rocket, the rest of the line contains strictly positive number K (∑K≤100000) and array ki (1≤ki≤M) of K integers. If the type is 1, then the weapon is Cognition beam, the rest of the line contains integers l and r (1≤l≤r≤M) . If the type is 2 then the weapon is OMG bazooka, the rest of the line contains distinct numbers a , b and c $ (1 \leq a,b,c \leq M)$ .
输出格式
The first line should contain the maximum number of destroyed spaceships — X .
In the next X lines, every line should contain two numbers A and B , where A is an index of the weapon and B is an index of the spaceship which was destroyed by the weapon A .
输入输出样例
输入#1
3 5 0 1 4 2 5 4 1 1 1 4
输出#1
4 2 1 3 2 1 4 2 5
说明/提示
SQL rocket can destroy only 4th spaceship. OMG Bazooka can destroy two of 1st, 4th or 5th spaceship, and Cognition beam can destroy any spaceship from the interval [1,4] . The maximum number of destroyed spaceship is 4, and one possible plan is that SQL rocket should destroy 4th spaceship, OMG bazooka should destroy 1st and 5th spaceship and Cognition beam should destroy 2nd spaceship.