Task: | Omenat |
Sender: | Henrik Lievonen |
Submission time: | 2015-12-20 16:46:45 +0200 |
Language: | C++ |
Status: | READY |
Result: | 0 |
group | verdict | score |
---|---|---|
#1 | RUNTIME ERROR | 0 |
test | verdict | time | score | |
---|---|---|---|---|
#1 | RUNTIME ERROR | 0.14 s | 0 | details |
#2 | RUNTIME ERROR | 0.14 s | 0 | details |
#3 | RUNTIME ERROR | 0.15 s | 0 | details |
#4 | RUNTIME ERROR | 0.15 s | 0 | details |
#5 | RUNTIME ERROR | 0.14 s | 0 | details |
#6 | RUNTIME ERROR | 0.14 s | 0 | details |
#7 | RUNTIME ERROR | 0.14 s | 0 | details |
#8 | RUNTIME ERROR | 0.14 s | 0 | details |
#9 | RUNTIME ERROR | 0.15 s | 0 | details |
#10 | RUNTIME ERROR | 0.14 s | 0 | details |
Code
// G#include <iostream>#include <random>#include <vector>#include <algorithm>using namespace std;typedef unsigned long long int ull;mt19937 mt(0);uniform_int_distribution<> flip(1, 2);vector<ull> apples;void print(const vector<char> &r) {for (char c : r)cout << c << '\n';}int main() {int n;cin >> n;for (int i = 0; i < n; i++) {ull a;cin >> a;apples.push_back(a);}vector<char> naive(n);ull naived;{ull u = 0;ull m = 0;for (int i = 0; i < n; i++) {ull a = apples[i];if (u > m) {naive[i] = '2';m += a;} else {naive[i] = '1';u += a;}}naived = min(u-m, m-u);}vector<char> sorted(n);ull sortedd;{sort(apples.begin(), apples.end());ull u = 0;ull m = 0;for (int i = n-1; i >= 0; i++) {ull a = apples[i];if (u > m) {sorted[i] = '2';m += a;} else {sorted[i] = '1';u += a;}}sortedd = min(u-m, m-u);}vector<char> random;ull randomd = 1ull<60;{for (int j = 0; j < 100000; j++) {vector<char> cur(n);ull u = 0;ull m = 0;for (int i = 0; i < n; i++) {ull a = apples[i];if (flip(mt)) {cur[i] = '1';u += a;} else {cur[i] = '2';m += a;}}ull t = min(u-m, m-u);if (t < randomd) {randomd = t;random = cur;}}}if (naived < sortedd && naived < randomd) {print(naive);} else if (sortedd < naived && sortedd < randomd) {print(sorted);} else if (randomd < naived && randomd < sortedd) {print(random);} else {print(sorted);}}
Test details
Test 1
Verdict: RUNTIME ERROR
input |
---|
95 779724552 231968220 985023789 ... |
correct output |
---|
(empty) |
user output |
---|
(empty) |
Test 2
Verdict: RUNTIME ERROR
input |
---|
85 229722261 51722691 862338862 8... |
correct output |
---|
(empty) |
user output |
---|
(empty) |
Test 3
Verdict: RUNTIME ERROR
input |
---|
97 398995377 989444445 634573915 ... |
correct output |
---|
(empty) |
user output |
---|
(empty) |
Test 4
Verdict: RUNTIME ERROR
input |
---|
99 843687873 164010938 51269970 4... |
correct output |
---|
(empty) |
user output |
---|
(empty) |
Test 5
Verdict: RUNTIME ERROR
input |
---|
90 864611617 418460939 773297829 ... |
correct output |
---|
(empty) |
user output |
---|
(empty) |
Test 6
Verdict: RUNTIME ERROR
input |
---|
92 289890246 25801423 763027596 7... |
correct output |
---|
(empty) |
user output |
---|
(empty) |
Test 7
Verdict: RUNTIME ERROR
input |
---|
89 879039800 50522278 850785072 4... |
correct output |
---|
(empty) |
user output |
---|
(empty) |
Test 8
Verdict: RUNTIME ERROR
input |
---|
96 27192469 222283781 681532515 1... |
correct output |
---|
(empty) |
user output |
---|
(empty) |
Test 9
Verdict: RUNTIME ERROR
input |
---|
100 186459081 254674429 394007236 ... |
correct output |
---|
(empty) |
user output |
---|
(empty) |
Test 10
Verdict: RUNTIME ERROR
input |
---|
98 612168861 979831717 671087051 ... |
correct output |
---|
(empty) |
user output |
---|
(empty) |