A15451 | Rule of League
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
There is a badminton championship in which $n$ players take part. The players are numbered from $1$ to $n$ .
The championship proceeds as follows: player $1$ and player $2$ play a game, then the winner and player $3$ play a game, and then the winner and player $4$ play a game, and so on. So, $n-1$ games are played, and the winner of the last game becomes the champion. There are no draws in the games.
You want to find out the result of championship. Currently, you only know the following information:
- Each player has either won $x$ games or $y$ games in the championship.
Given $n$ , $x$ , and $y$ , find out if there is a result that matches this information.
The championship proceeds as follows: player $1$ and player $2$ play a game, then the winner and player $3$ play a game, and then the winner and player $4$ play a game, and so on. So, $n-1$ games are played, and the winner of the last game becomes the champion. There are no draws in the games.
You want to find out the result of championship. Currently, you only know the following information:
- Each player has either won $x$ games or $y$ games in the championship.
Given $n$ , $x$ , and $y$ , find out if there is a result that matches this information.
输入格式
The first line contains one integer $t$ ( $1 \le t \le 10^5$ ) — the number of test cases.
The only line of each test case contains three integers $n$ , $x$ , $y$ ( $2 \le n \le 10^5$ , $0 \le x, y < n$ ).
It is guaranteed that the sum of $n$ over all test cases doesn't exceed $2 \cdot 10^5$ .
The only line of each test case contains three integers $n$ , $x$ , $y$ ( $2 \le n \le 10^5$ , $0 \le x, y < n$ ).
It is guaranteed that the sum of $n$ over all test cases doesn't exceed $2 \cdot 10^5$ .
输出格式
Print the answer for each test case, one per line. If there is no result that matches the given information about $n$ , $x$ , $y$ , print $-1$ . Otherwise, print $n-1$ space separated integers, where the $i$ -th integer is the player number of the winner of the $i$ -th game.
If there are multiple valid results, print any.
If there are multiple valid results, print any.
输入输出样例
输入 #1
5 5 2 0 8 1 2 3 0 0 2 0 1 6 3 0
输出 #1
1 1 4 4 -1 -1 2 -1
In the first test case, player $1$ and player $4$ won $x$ times, player $2$ and player $3$ won $y$ times.
In the second, third, and fifth test cases, no valid result exists.
In the second, third, and fifth test cases, no valid result exists.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted