World of Tank

题意翻译

在一个 $2\times n$ 的方格图中,有一些位置放置了障碍物,其中第一行、第二行分别有 $m1$、$m2$ 个。 你要操纵坦克从 $(0,1)$ 到达 $(n+1,1)$ 或者 $(n+1,2)$ 。 在每一秒中,坦克要先向右移动一格,之后你可以选择让坦克向上/下移动或者不动(特别地,在第 $0$ 秒可以先选择让坦克向上/下移动一次)。 坦克可以开炮摧毁其右侧最近的障碍物,开炮前需要 $t$ 秒进行装弹,初始时未装弹。 在任意时刻,坦克都不能和未摧毁障碍物在同一个格子里。 判断有无解,如有解则构造方案:输出一组合法解的上下移动的时刻、和开炮的坐标位置 (上下移动位置不能超过 $2\times 10^6$ 个)。 $1\le n\le 10^9,0\le m1+m2\le 10^6 ,1\le t\le n$ 。 by @Maverik

题目描述

Vitya loves programming and problem solving, but sometimes, to distract himself a little, he plays computer games. Once he found a new interesting game about tanks, and he liked it so much that he went through almost all levels in one day. Remained only the last level, which was too tricky. Then Vitya remembered that he is a programmer, and wrote a program that helped him to pass this difficult level. Try do the same. The game is organized as follows. There is a long road, two cells wide and $ n $ cells long. Some cells have obstacles. You control a tank that occupies one cell. Initially, the tank is located before the start of the road, in a cell with coordinates $ (0,1) $ . Your task is to move the tank to the end of the road, to the cell $ (n+1,1) $ or $ (n+1,2) $ . ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF936D/497731500b30f785c9265d99d23731ece72d321a.png)Every second the tank moves one cell to the right: the coordinate $ x $ is increased by one. When you press the up or down arrow keys, the tank instantly changes the lane, that is, the $ y $ coordinate. When you press the spacebar, the tank shoots, and the nearest obstacle along the lane in which the tank rides is instantly destroyed. In order to load a gun, the tank needs $ t $ seconds. Initially, the gun is not loaded, that means, the first shot can be made only after $ t $ seconds after the tank starts to move. If at some point the tank is in the same cell with an obstacle not yet destroyed, it burns out. If you press the arrow exactly at the moment when the tank moves forward, the tank will first move forward, and then change the lane, so it will not be possible to move diagonally. Your task is to find out whether it is possible to pass the level, and if possible, to find the order of actions the player need to make.

输入输出格式

输入格式


The first line contains four integers $ n $ , $ m_{1} $ , $ m_{2} $ and $ t $ , the length of the field, the number of obstacles in the first lane, the number of obstacles in the second lane and the number of tank steps before reloading, respectively ( $ 1<=n<=10^{9} $ ; $ 0<=m_{1},m_{2}<=n $ ; $ 0<=m_{1}+m_{2}<=10^{6} $ ; $ 1<=t<=n $ ). The next two lines contain a description of the obstacles. The first of these lines contains $ m_{1} $ numbers $ x_{i} $ — the obstacle coordinates in the first lane ( $ 1<=x_{i}<=n $ ; $ x_{i}&lt;x_{i+1} $ ). The $ y $ coordinate for all these obstacles will be $ 1 $ . The second line contains $ m_{2} $ numbers describing the obstacles of the second lane in the same format. The $ y $ coordinate of all these obstacles will be $ 2 $ .

输出格式


In the first line print «Yes», if it is possible to pass the level, or «No», otherwise. If it is possible, then in the second line print the number of times the tank moves from one lane to another, and in the next line print the coordinates of the transitions, one number per transition: the coordinate $ x $ ( $ 0<=x<=n+1 $ ). All transition coordinates coordinates must be distinct and should be output in strictly increasing order.The number of transitions should not exceed $ 2·10^{6} $ . If the tank can pass the level, then it can do it using no more than $ 2·10^{6} $ transitions. In the fourth line print the number of shots that the tank makes during the movement, in the following lines print two numbers, $ x $ and $ y $ coordinates of the point ( $ 1<=x<=n $ , $ 1<=y<=2 $ ), from which the tank fired a shot, the number of shots must not exceed $ m_{1}+m_{2} $ . Shots must be output in the order in which they are fired. If there are several solutions, output any one.

输入输出样例

输入样例 #1

6 2 3 2
2 6
3 5 6

输出样例 #1

Yes
2
0 3 
2
2 2
4 1

输入样例 #2

1 1 1 1
1
1

输出样例 #2

No

输入样例 #3

9 5 2 5
1 2 7 8 9
4 6

输出样例 #3

Yes
4
0 3 5 10 
1
5 2

说明

Picture for the first sample test. ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF936D/2962257018f77a9ecbd4b72cd5726f5e223e0507.png)