A13061 | The Football Season
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
The football season has just ended in Berland. According to the rules of Berland football, each match is played between two teams. The result of each match is either a draw, or a victory of one of the playing teams. If a team wins the match, it gets $w$ points, and the opposing team gets $0$ points. If the game results in a draw, both teams get $d$ points.
The manager of the Berland capital team wants to summarize the results of the season, but, unfortunately, all information about the results of each match is lost. The manager only knows that the team has played $n$ games and got $p$ points for them.
You have to determine three integers $x$ , $y$ and $z$ — the number of wins, draws and loses of the team. If there are multiple answers, print any of them. If there is no suitable triple $(x, y, z)$ , report about it.
The manager of the Berland capital team wants to summarize the results of the season, but, unfortunately, all information about the results of each match is lost. The manager only knows that the team has played $n$ games and got $p$ points for them.
You have to determine three integers $x$ , $y$ and $z$ — the number of wins, draws and loses of the team. If there are multiple answers, print any of them. If there is no suitable triple $(x, y, z)$ , report about it.
输入格式
The first line contains four integers $n$ , $p$ , $w$ and $d$ $(1 \le n \le 10^{12}, 0 \le p \le 10^{17}, 1 \le d < w \le 10^{5})$ — the number of games, the number of points the team got, the number of points awarded for winning a match, and the number of points awarded for a draw, respectively. Note that $w > d$ , so the number of points awarded for winning is strictly greater than the number of points awarded for draw.
输出格式
If there is no answer, print $-1$ .
Otherwise print three non-negative integers $x$ , $y$ and $z$ — the number of wins, draws and losses of the team. If there are multiple possible triples $(x, y, z)$ , print any of them. The numbers should meet the following conditions:
- $x \cdot w + y \cdot d = p$ ,
- $x + y + z = n$ .
Otherwise print three non-negative integers $x$ , $y$ and $z$ — the number of wins, draws and losses of the team. If there are multiple possible triples $(x, y, z)$ , print any of them. The numbers should meet the following conditions:
- $x \cdot w + y \cdot d = p$ ,
- $x + y + z = n$ .
输入输出样例
输入 #1
30 60 3 1
输出 #1
17 9 4
输入 #2
10 51 5 4
输出 #2
-1
输入 #3
20 0 15 5
输出 #3
0 0 20
One of the possible answers in the first example — $17$ wins, $9$ draws and $4$ losses. Then the team got $17 \cdot 3 + 9 \cdot 1 = 60$ points in $17 + 9 + 4 = 30$ games.
In the second example the maximum possible score is $10 \cdot 5 = 50$ . Since $p = 51$ , there is no answer.
In the third example the team got $0$ points, so all $20$ games were lost.
In the second example the maximum possible score is $10 \cdot 5 = 50$ . Since $p = 51$ , there is no answer.
In the third example the team got $0$ points, so all $20$ games were lost.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted