您的位置:首页 > 其它

codeforce_Diplomas and Certificates_水

2017-08-17 16:26 323 查看
A. Diplomas and Certificates

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<iostream>
#include<cstdio>
#include<cstring>
#include<map>
#include<algorithm>
using namespace std;
typedef long long ll;

int main()
{
ll n ,k;
while(cin>>n>>k)
{
ll t=n/2;
if(k>=t)
cout<<"0 0 "<<n<<endl;
else
{

ll s1=t/(k+1);
ll s2=s1*k;
ll s3=n-s1-s2;
cout<<s1<<" "<<s2<<" "<<s3<<endl;
}
}
return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  codeforce acm