A11014 | Permutation Game
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
$n$ children are standing in a circle and playing a game. Children's numbers in clockwise order form a permutation $a_{1},a_{2},...,a_{n}$ of length $n$ . It is an integer sequence such that each integer from $1$ to $n$ appears exactly once in it.
The game consists of $m$ steps. On each step the current leader with index $i$ counts out $a_{i}$ people in clockwise order, starting from the next person. The last one to be pointed at by the leader becomes the new leader.
You are given numbers $l_{1},l_{2},...,l_{m}$ — indices of leaders in the beginning of each step. Child with number $l_{1}$ is the first leader in the game.
Write a program which will restore a possible permutation $a_{1},a_{2},...,a_{n}$ . If there are multiple solutions then print any of them. If there is no solution then print -1.
The game consists of $m$ steps. On each step the current leader with index $i$ counts out $a_{i}$ people in clockwise order, starting from the next person. The last one to be pointed at by the leader becomes the new leader.
You are given numbers $l_{1},l_{2},...,l_{m}$ — indices of leaders in the beginning of each step. Child with number $l_{1}$ is the first leader in the game.
Write a program which will restore a possible permutation $a_{1},a_{2},...,a_{n}$ . If there are multiple solutions then print any of them. If there is no solution then print -1.
输入格式
The first line contains two integer numbers $n$ , $m$ ( $1<=n,m<=100$ ).
The second line contains $m$ integer numbers $l_{1},l_{2},...,l_{m}$ ( $1<=l_{i}<=n$ ) — indices of leaders in the beginning of each step.
The second line contains $m$ integer numbers $l_{1},l_{2},...,l_{m}$ ( $1<=l_{i}<=n$ ) — indices of leaders in the beginning of each step.
输出格式
Print such permutation of $n$ numbers $a_{1},a_{2},...,a_{n}$ that leaders in the game will be exactly $l_{1},l_{2},...,l_{m}$ if all the rules are followed. If there are multiple solutions print any of them.
If there is no permutation which satisfies all described conditions print -1.
If there is no permutation which satisfies all described conditions print -1.
输入输出样例
输入 #1
4 5 2 3 1 4 4
输出 #1
3 1 2 4
输入 #2
3 3 3 1 2
输出 #2
-1
Let's follow leadership in the first example:
- Child $2$ starts.
- Leadership goes from $2$ to $2+a_{2}=3$ .
- Leadership goes from $3$ to $3+a_{3}=5$ . As it's greater than $4$ , it's going in a circle to $1$ .
- Leadership goes from $1$ to $1+a_{1}=4$ .
- Leadership goes from $4$ to $4+a_{4}=8$ . Thus in circle it still remains at $4$ .
- Child $2$ starts.
- Leadership goes from $2$ to $2+a_{2}=3$ .
- Leadership goes from $3$ to $3+a_{3}=5$ . As it's greater than $4$ , it's going in a circle to $1$ .
- Leadership goes from $1$ to $1+a_{1}=4$ .
- Leadership goes from $4$ to $4+a_{4}=8$ . Thus in circle it still remains at $4$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted