Task: | Omenat |
Sender: | |
Submission time: | 2015-12-20 15:08:35 +0200 |
Language: | C++ |
Status: | READY |
Result: | 64 |
group | verdict | score |
---|---|---|
#1 | ACCEPTED | 64.4 |
test | verdict | time | score | |
---|---|---|---|---|
#1 | ACCEPTED | 0.23 s | 5.5 | details |
#2 | ACCEPTED | 0.23 s | 6.9 | details |
#3 | ACCEPTED | 0.24 s | 6.8 | details |
#4 | ACCEPTED | 0.23 s | 6.5 | details |
#5 | ACCEPTED | 0.23 s | 7.6 | details |
#6 | ACCEPTED | 0.22 s | 6.3 | details |
#7 | ACCEPTED | 0.23 s | 7 | details |
#8 | ACCEPTED | 0.22 s | 5.5 | details |
#9 | ACCEPTED | 0.23 s | 7 | details |
#10 | ACCEPTED | 0.23 s | 5.3 | details |
Code
#include <iostream> #include <cstdlib> #include <vector> #define F first #define S second using namespace std; typedef long long ll; const int N = 8e6; ll t[111]; ll mod = 98765431; ll asd = 1007; int main() { srand(time(0)); ll rr = rand()%mod; int n; cin>>n; pair<ll, vector<int> > best = {1e18, {0}}; ll sum = 0; for(int i = 0; i < n; ++i) { cin>>t[i]; sum += t[i]; } for(int i = 0; i < N/n; ++i) { ll a = sum/2; ll left = sum; vector<int> v(n); for(int j = 0; j < n; ++j) { rr *= asd; rr %= mod; ll r = rr%1000; //if(r/1000 < a/left) { if(r*left < 1000*a) { left -= t[j]; a -= t[j]; v[j] = 1; } else { left -= t[j]; v[j] = 2; } } a = abs(a); best = min(best, {a, v}); } for(int i = 0; i < n; ++i) { cout<<best.S[i]<<' '; } cout<<'\n'; }
Test details
Test 1
Verdict: ACCEPTED
input |
---|
95 779724552 231968220 985023789 ... |
correct output |
---|
(empty) |
user output |
---|
1 1 2 2 1 2 1 1 2 1 1 2 1 2 1 ... |
Test 2
Verdict: ACCEPTED
input |
---|
85 229722261 51722691 862338862 8... |
correct output |
---|
(empty) |
user output |
---|
1 1 2 2 1 2 1 2 2 1 1 2 1 1 2 ... |
Test 3
Verdict: ACCEPTED
input |
---|
97 398995377 989444445 634573915 ... |
correct output |
---|
(empty) |
user output |
---|
2 2 1 1 2 2 1 1 2 1 1 1 2 1 1 ... |
Test 4
Verdict: ACCEPTED
input |
---|
99 843687873 164010938 51269970 4... |
correct output |
---|
(empty) |
user output |
---|
2 1 2 1 1 1 1 2 1 1 1 1 2 2 2 ... |
Test 5
Verdict: ACCEPTED
input |
---|
90 864611617 418460939 773297829 ... |
correct output |
---|
(empty) |
user output |
---|
1 1 2 1 2 2 2 1 1 1 2 1 2 2 2 ... |
Test 6
Verdict: ACCEPTED
input |
---|
92 289890246 25801423 763027596 7... |
correct output |
---|
(empty) |
user output |
---|
1 1 1 2 2 1 2 1 2 2 1 1 2 2 2 ... |
Test 7
Verdict: ACCEPTED
input |
---|
89 879039800 50522278 850785072 4... |
correct output |
---|
(empty) |
user output |
---|
2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 ... |
Test 8
Verdict: ACCEPTED
input |
---|
96 27192469 222283781 681532515 1... |
correct output |
---|
(empty) |
user output |
---|
2 2 2 2 2 1 1 2 1 2 2 2 2 1 2 ... |
Test 9
Verdict: ACCEPTED
input |
---|
100 186459081 254674429 394007236 ... |
correct output |
---|
(empty) |
user output |
---|
2 1 1 2 1 2 1 1 1 2 1 2 2 1 1 ... |
Test 10
Verdict: ACCEPTED
input |
---|
98 612168861 979831717 671087051 ... |
correct output |
---|
(empty) |
user output |
---|
1 2 1 2 1 1 1 2 1 2 1 1 2 1 2 ... |