307876: CF1428D. Bouncing Boomerangs
Memory Limit:256 MB
Time Limit:2 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
Bouncing Boomerangs
题意翻译
在$n\times n$的网格上,有若干目标。从最低下扔回旋镖,碰到目标会右转。每行、每列不超过两个目标。现在已知从每一列扔出去会撞到$a_i$个障碍($a_i\le 3$),请求出一种合法方案。 翻译 by jun头吉吉题目描述
To improve the boomerang throwing skills of the animals, Zookeeper has set up an $ n \times n $ grid with some targets, where each row and each column has at most $ 2 $ targets each. The rows are numbered from $ 1 $ to $ n $ from top to bottom, and the columns are numbered from $ 1 $ to $ n $ from left to right. For each column, Zookeeper will throw a boomerang from the bottom of the column (below the grid) upwards. When the boomerang hits any target, it will bounce off, make a $ 90 $ degree turn to the right and fly off in a straight line in its new direction. The boomerang can hit multiple targets and does not stop until it leaves the grid. ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF1428D/72465dd91e513170499b588221a0f92a0b864d32.png)In the above example, $ n=6 $ and the black crosses are the targets. The boomerang in column $ 1 $ (blue arrows) bounces $ 2 $ times while the boomerang in column $ 3 $ (red arrows) bounces $ 3 $ times. The boomerang in column $ i $ hits exactly $ a_i $ targets before flying out of the grid. It is known that $ a_i \leq 3 $ . However, Zookeeper has lost the original positions of the targets. Thus, he asks you to construct a valid configuration of targets that matches the number of hits for each column, or tell him that no such configuration exists. If multiple valid configurations exist, you may print any of them.输入输出格式
输入格式
The first line contains a single integer $ n $ $ (1 \leq n \leq 10^5) $ . The next line contains $ n $ integers $ a_1,a_2,\ldots,a_n $ $ (0 \leq a_i \leq 3) $ .
输出格式
If no configuration of targets exist, print $ -1 $ . Otherwise, on the first line print a single integer $ t $ $ (0 \leq t \leq 2n) $ : the number of targets in your configuration. Then print $ t $ lines with two spaced integers each per line. Each line should contain two integers $ r $ and $ c $ $ (1 \leq r,c \leq n) $ , where $ r $ is the target's row and $ c $ is the target's column. All targets should be different. Every row and every column in your configuration should have at most two targets each.
输入输出样例
输入样例 #1
6
2 0 3 0 1 1
输出样例 #1
5
2 1
2 5
3 3
3 6
5 6
输入样例 #2
1
0
输出样例 #2
0
输入样例 #3
6
3 2 2 2 1 1
输出样例 #3
-1