本文主要是介绍D - Diplomas and Certificates CodeForces - 818A,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
There are n students who have taken part in an olympiad. Now it’s time to award the students.
Some of them will receive diplomas, some wiil get certificates, and others won’t receive anything. Students with diplomas and certificates are called winners. But there are some rules of counting the number of diplomas and certificates. The number of certificates must be exactly k times greater than the number of diplomas. The number of winners must not be greater than half of the number of all students (i.e. not be greater than half of n). It’s possible that there are no winners.
You have to identify the maximum possible number of winners, according to these rules. Also for this case you have to calculate the number of students with diplomas, the number of students with certificates and the number of students who are not winners.
Input
The first (and the only) line of input contains two integers n and k (1 ≤ n, k ≤ 1012), where n is the number of students and k is the ratio between the number of certificates and the number of diplomas.
Output
Output three numbers: the number of students with diplomas, the number of students with certificates and the number of students who are not winners in case when the number of winners is maximum possible.
It’s possible that there are no winners.
Examples
Input
18 2
Output
3 6 9
Input
9 10
Output
0 0 9
Input
1000000000000 5
Output
83333333333 416666666665 500000000002
Input
1000000000000 499999999999
Output
1 499999999999 500000000000
水题
#include <cstdio>
#include <cmath>
#include <algorithm>
#include <iostream>
#include <cstring>
#include <map>using namespace std;
typedef long long ll;int main()
{ll n,k;cin >> n >> k;ll num1 = n / (2 * (k + 1));ll num2 = num1 * k;cout << num1 << ' ' << num2 << ' ' << n - num1 - num2 << endl;return 0;
}
这篇关于D - Diplomas and Certificates CodeForces - 818A的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!