Task: | Omenat |
Sender: | |
Submission time: | 2016-01-05 15:37:27 +0200 |
Language: | C++ |
Status: | READY |
Result: | 0 |
group | verdict | score |
---|---|---|
#1 | TIME LIMIT EXCEEDED | 67.8 |
test | verdict | time | score | |
---|---|---|---|---|
#1 | ACCEPTED | 0.92 s | 7.9 | details |
#2 | ACCEPTED | 0.09 s | 10 | details |
#3 | TIME LIMIT EXCEEDED | -- | 0 | details |
#4 | TIME LIMIT EXCEEDED | -- | 0 | details |
#5 | ACCEPTED | 0.91 s | 8.2 | details |
#6 | ACCEPTED | 0.94 s | 9.1 | details |
#7 | ACCEPTED | 0.89 s | 8.5 | details |
#8 | ACCEPTED | 0.99 s | 8.2 | details |
#9 | ACCEPTED | 0.97 s | 8.3 | details |
#10 | ACCEPTED | 0.93 s | 7.6 | details |
Code
#include <iostream> #include <vector> #include <algorithm> using namespace std; int n; vector<pair<int, int> > p; bool srt(pair<int, int> a, pair<int, int> b){ return a.first>b.first;} int jako[101]; int tulos[101]; long long paras; int main(){ ios_base::sync_with_stdio(0); cin.tie(0); paras=100000000000000ll; cin >> n; p.resize(n); for (int i=0; i!=n; ++i){ cin >> p[i].first; p[i].second=i; }sort(p.begin(), p.end(), srt); int b=min(n, 22); int bt=1<<b; ++b; long long sa; long long sb; int i, j; long long d; for (i=0; i!=bt; ++i){ sa=0; sb=0; for (j=0; j!=n; ++j){ if (j<=b){ if (i&(1<<j)){ sa+=p[j].first; jako[j]=1; }else{ sb+=p[j].first; jako[j]=2; } }else{ if (sa<sb){ sa+=p[j].first; jako[j]=1; }else{ sb+=p[j].first; jako[j]=2; } } } d=sa-sb; if (d<0) d=-d; if (d<paras){ for (j=0; j!=n; ++j) tulos[p[j].second]=jako[j]; paras=d; if (paras==0) break; } } for (i=0; i!=n; ++i) cout << tulos[i] << "\n"; }
Test details
Test 1
Verdict: ACCEPTED
input |
---|
95 779724552 231968220 985023789 ... |
correct output |
---|
(empty) |
user output |
---|
2 2 2 2 1 ... |
Test 2
Verdict: ACCEPTED
input |
---|
85 229722261 51722691 862338862 8... |
correct output |
---|
(empty) |
user output |
---|
2 2 1 1 2 ... |
Test 3
Verdict: TIME LIMIT EXCEEDED
input |
---|
97 398995377 989444445 634573915 ... |
correct output |
---|
(empty) |
user output |
---|
(empty) |
Test 4
Verdict: TIME LIMIT EXCEEDED
input |
---|
99 843687873 164010938 51269970 4... |
correct output |
---|
(empty) |
user output |
---|
(empty) |
Test 5
Verdict: ACCEPTED
input |
---|
90 864611617 418460939 773297829 ... |
correct output |
---|
(empty) |
user output |
---|
1 1 2 2 1 ... |
Test 6
Verdict: ACCEPTED
input |
---|
92 289890246 25801423 763027596 7... |
correct output |
---|
(empty) |
user output |
---|
2 1 2 2 2 ... |
Test 7
Verdict: ACCEPTED
input |
---|
89 879039800 50522278 850785072 4... |
correct output |
---|
(empty) |
user output |
---|
1 2 2 1 1 ... |
Test 8
Verdict: ACCEPTED
input |
---|
96 27192469 222283781 681532515 1... |
correct output |
---|
(empty) |
user output |
---|
1 1 1 1 1 ... |
Test 9
Verdict: ACCEPTED
input |
---|
100 186459081 254674429 394007236 ... |
correct output |
---|
(empty) |
user output |
---|
1 1 2 2 1 ... |
Test 10
Verdict: ACCEPTED
input |
---|
98 612168861 979831717 671087051 ... |
correct output |
---|
(empty) |
user output |
---|
1 1 1 1 1 ... |