CSES - Putka Open 2015 – 3/6 - Results
Submission details
Task:Kasat
Sender:
Submission time:2015-09-11 23:46:37 +0300
Language:C++
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
Test results
testverdicttimegroup
#10.06 s1details
#20.05 s2details
#30.06 s3details

Code

#include <iostream>
#include <vector>
#include <string>
#include <set>
#include <utility>
#include <algorithm>

using namespace std;
typedef long long LL;

#define min(a,b) (a < b ? a : b)

void print(vector<LL> & V){
	sort(V.begin(), V.end());
	for(auto p : V) cout << p << " ";
	cout << endl;
}

void run(vector<LL> & v, int n){
	
	while(true){
		if(n == 0) return;
		sort(v.begin(), v.end());
		v[0]++; v[2]--;
		n--;
	}
}

void solve(LL a, LL b, LL c, LL n){
	if(a == b && b == c){
		if(n % 2 == 1)
			cout << a-1 << " " << b << " " << c + 1 << endl;
		else
			cout << a << " " << a << " " << a << endl;
		return;
	}
	
	LL m = (a+b+c)/3;
	if((a+b+c)%3 != 0) m++;
	
	vector<LL> v = {a,b,c};
	sort(v.begin(), v.end());
	a = v[2]; b = v[1]; c = v[0];
	// a >= b >= c
	LL d = min(n,a - m);
	n -= d;
	
	a -= d;
	LL d2 = min(b-c, d);
	c += d2;
	d -= d2;
	
	b += d/2;
	c += d/2;
	if(d % 2 == 1) c++;
	
	v = {a,b,c};
	LL R = min(5,n);
	run(v,R);
	n -= R;
	n %= 2;
	if(n == 1) run(v,1);
	print(v);
	return;
	

}

int main(){
	LL t; cin >> t;
	while(t--){
		LL a,b,c,n; cin >> a >> b >> c >> n;
		solve(a,b,c,n);
	}
}



Test details

Test 1

Group: 1

Verdict:

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
34 47 59 
24 24 24 
45 45 46 
43 46 94 
32 32 33 
...

Test 2

Group: 2

Verdict:

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 
48 55 61 
39 64 87 
36 37 38 
...

Test 3

Group: 3

Verdict:

input
1000
211358104 753479603 549127067 ...

correct output
504654924 504654925 504654925
589019272 589019272 589019273
101309993 101309994 101309994
436205296 436205297 436205298
351062567 351062568 351062568
...

user output
460182787 504654925 549127062 
380722989 589019273 797315555 
61603096 101309994 141016891 
436205296 436205297 436205298 
254047062 351062568 448078073 
...