| Task: | Kasat |
| Sender: | |
| Submission time: | 2015-09-12 20:22:21 +0300 |
| Language: | C++ |
| Status: | READY |
| Result: | 100 |
| group | verdict | score |
|---|---|---|
| #1 | ACCEPTED | 21 |
| #2 | ACCEPTED | 33 |
| #3 | ACCEPTED | 46 |
| test | verdict | time | group | |
|---|---|---|---|---|
| #1 | ACCEPTED | 0.06 s | 1 | details |
| #2 | ACCEPTED | 0.05 s | 2 | details |
| #3 | ACCEPTED | 0.06 s | 3 | details |
Code
#include <iostream>
using namespace std;
int t;
int abs(int a){return a>0?a:-a;}
int main(){
ios_base::sync_with_stdio(0); cin.tie(0);
cin >> t;
int a, b, c, n;
for (int i=0; i<t; ++i){
cin >> a >> b >> c >> n;
if (a>b) swap(a, b);
if (b>c) swap(b, c);
if (a>b) swap(a, b);
int m=((long long)a+b+c)/3;
int d=((long long)a+b+c)%3;
int s=abs(m-a)+abs(m-b)+abs(m-c);
if (n<s/2){
if (b>m){
a+=n;
n-=c-b; c=b;
if (n>0){
b-=(n+1)/2;
c-=n/2;
}else c-=n;
}else{
c-=n;
n-=b-a; a=b;
if (n>0){
a+=n/2;
b+=(n+1)/2;
}else a+=n;
}
cout << a << " " << b << " " << c << "\n";
}else{
if (d==1) cout << m << " " << m << " " << m+1 << "\n";
else if (d==2) cout << m << " " << m+1 << " " << m+1 << "\n";
else if ((n-s/2)&1) cout << m-1 << " " << m << " " << m+1 << "\n";
else cout << m << " " << m << " " << m << "\n";
}
}
}Test details
Test 1
Group: 1
Verdict: ACCEPTED
| input |
|---|
| 1000 7 69 64 45 37 5 30 81 50 49 37 38 46 37 100 6 ... |
| correct output |
|---|
| 46 47 47 24 24 24 45 45 46 43 46 94 32 32 33 ... |
| user output |
|---|
| 46 47 47 24 24 24 45 45 46 43 46 94 32 32 33 ... |
Test 2
Group: 2
Verdict: ACCEPTED
| input |
|---|
| 1000 19 13 88 978977859 67 57 39 960003440 81 16 67 971611942 92 96 2 957979201 ... |
| correct output |
|---|
| 39 40 41 54 54 55 54 55 55 63 63 64 36 37 38 ... |
| user output |
|---|
| 39 40 41 54 54 55 54 55 55 63 63 64 36 37 38 ... |
Test 3
Group: 3
Verdict: ACCEPTED
| input |
|---|
| 1000 211358104 753479603 549127067 ... |
| correct output |
|---|
| 504654924 504654925 504654925 589019272 589019272 589019273 101309993 101309994 101309994 436205296 436205297 436205298 351062567 351062568 351062568 ... |
| user output |
|---|
| 504654924 504654925 504654925 589019272 589019272 589019273 101309993 101309994 101309994 436205296 436205297 436205298 351062567 351062568 351062568 ... |
