| Task: | Old Legos |
| Sender: | aalto25b_002 |
| Submission time: | 2025-09-10 17:48:38 +0300 |
| Language: | C++ (C++17) |
| Status: | READY |
| Result: | WRONG ANSWER |
| test | verdict | time | |
|---|---|---|---|
| #1 | WRONG ANSWER | 0.00 s | details |
| #2 | WRONG ANSWER | 0.00 s | details |
| #3 | RUNTIME ERROR | 0.00 s | details |
| #4 | RUNTIME ERROR | 0.00 s | details |
| #5 | WRONG ANSWER | 0.00 s | details |
| #6 | WRONG ANSWER | 0.00 s | details |
| #7 | RUNTIME ERROR | 0.00 s | details |
| #8 | RUNTIME ERROR | 0.00 s | details |
| #9 | RUNTIME ERROR | 0.00 s | details |
| #10 | WRONG ANSWER | 0.00 s | details |
| #11 | WRONG ANSWER | 0.00 s | details |
| #12 | WRONG ANSWER | 0.00 s | details |
| #13 | WRONG ANSWER | 0.00 s | details |
| #14 | WRONG ANSWER | 0.00 s | details |
| #15 | WRONG ANSWER | 0.00 s | details |
| #16 | WRONG ANSWER | 0.00 s | details |
| #17 | WRONG ANSWER | 0.00 s | details |
| #18 | WRONG ANSWER | 0.00 s | details |
| #19 | WRONG ANSWER | 0.00 s | details |
| #20 | RUNTIME ERROR | 0.00 s | details |
| #21 | RUNTIME ERROR | 0.00 s | details |
| #22 | WRONG ANSWER | 0.01 s | details |
| #23 | RUNTIME ERROR | 0.00 s | details |
| #24 | RUNTIME ERROR | 0.00 s | details |
| #25 | WRONG ANSWER | 0.00 s | details |
| #26 | RUNTIME ERROR | 0.00 s | details |
| #27 | WRONG ANSWER | 0.00 s | details |
| #28 | RUNTIME ERROR | 0.00 s | details |
| #29 | WRONG ANSWER | 0.00 s | details |
| #30 | WRONG ANSWER | 0.00 s | details |
| #31 | RUNTIME ERROR | 0.00 s | details |
| #32 | RUNTIME ERROR | 0.00 s | details |
| #33 | RUNTIME ERROR | 0.00 s | details |
| #34 | RUNTIME ERROR | 0.00 s | details |
| #35 | RUNTIME ERROR | 0.00 s | details |
| #36 | WRONG ANSWER | 0.00 s | details |
| #37 | RUNTIME ERROR | 0.00 s | details |
| #38 | RUNTIME ERROR | 0.00 s | details |
| #39 | WRONG ANSWER | 0.00 s | details |
| #40 | RUNTIME ERROR | 0.00 s | details |
| #41 | WRONG ANSWER | 0.00 s | details |
| #42 | RUNTIME ERROR | 0.00 s | details |
| #43 | RUNTIME ERROR | 0.00 s | details |
| #44 | WRONG ANSWER | 0.00 s | details |
| #45 | RUNTIME ERROR | 0.00 s | details |
| #46 | RUNTIME ERROR | 0.00 s | details |
| #47 | WRONG ANSWER | 0.00 s | details |
| #48 | RUNTIME ERROR | 0.00 s | details |
| #49 | WRONG ANSWER | 0.00 s | details |
| #50 | WRONG ANSWER | 0.00 s | details |
| #51 | RUNTIME ERROR | 0.01 s | details |
| #52 | RUNTIME ERROR | 0.01 s | details |
| #53 | RUNTIME ERROR | 0.01 s | details |
| #54 | RUNTIME ERROR | 0.01 s | details |
| #55 | RUNTIME ERROR | 0.01 s | details |
| #56 | WRONG ANSWER | 0.01 s | details |
| #57 | RUNTIME ERROR | 0.01 s | details |
| #58 | RUNTIME ERROR | 0.01 s | details |
| #59 | WRONG ANSWER | 0.01 s | details |
| #60 | RUNTIME ERROR | 0.11 s | details |
| #61 | RUNTIME ERROR | 0.12 s | details |
| #62 | RUNTIME ERROR | 0.12 s | details |
| #63 | RUNTIME ERROR | 0.10 s | details |
| #64 | RUNTIME ERROR | 0.11 s | details |
| #65 | RUNTIME ERROR | 0.12 s | details |
| #66 | WRONG ANSWER | 0.11 s | details |
| #67 | WRONG ANSWER | 0.12 s | details |
| #68 | WRONG ANSWER | 0.11 s | details |
| #69 | WRONG ANSWER | 0.12 s | details |
Compiler report
input/code.cpp: In function 'int main()':
input/code.cpp:68:18: warning: suggest parentheses around comparison in operand of '&' [-Wparentheses]
68 | if (turn & 2 == 0) {
| ~~^~~~Code
#define F first
#define S second
#define PB push_back
#define MP make_pair
#define REP(i, a, b) for (int i = a; i < b; ++i)
#define BR "\n"
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef vector<int> vi;
typedef vector<bool> vb;
typedef pair<int, int> pi;
void dfs(int s, vi adj[], bool vis[]) {
if (vis[s]) {
return;
}
vis[s] = true;
// process s
for (auto u : adj[s]) {
dfs(u, adj, vis);
}
}
bool comp(pi a, pi b) { return a.F - a.S < b.F - b.S; }
int value(pi a) { return a.F - a.S; }
int main() {
// uncomment if io is a bottleneck
// ios::sync_with_stdio(0);
// cin.tie(0);
// uncomment to read cin from a file
// freopen("c.txt", "r", stdin);
int n;
cin >> n;
vector<pi> lego;
vector<int> left;
vector<pair<pi, int>> byUo;
vector<pair<pi, int>> byMaija;
REP(i, 0, n) {
int a, b;
cin >> a >> b;
lego.PB(MP(a, b));
byUo.PB(MP(MP(a, b), i));
byMaija.PB(MP(MP(b, a), i));
}
auto lego2 = lego;
sort(lego.rbegin(), lego.rend(), comp);
sort(lego2.begin(), lego2.end(), comp);
// sort(byUo.rbegin(), byUo.rend());
// sort(byMaija.rbegin(), byMaija.rend());
int res = 0;
int turn = 0;
int i, j;
i = 0;
j = n - 1;
while (i != j) {
if (turn & 2 == 0) {
res += value(lego[i]);
} else {
res -= value(lego[j]);
}
++i;
--j;
turn++;
}
cout << res << BR;
return EXIT_SUCCESS;
}
Test details
Test 1
Verdict: WRONG ANSWER
| input |
|---|
| 1 9 2 |
| correct output |
|---|
| 9 |
| user output |
|---|
| 0 |
Test 2
Verdict: WRONG ANSWER
| input |
|---|
| 1 10 4 |
| correct output |
|---|
| 10 |
| user output |
|---|
| 0 |
Test 3
Verdict: RUNTIME ERROR
| input |
|---|
| 2 8 1 3 5 |
| correct output |
|---|
| 3 |
| user output |
|---|
| (empty) |
Test 4
Verdict: RUNTIME ERROR
| input |
|---|
| 2 2 9 3 10 |
| correct output |
|---|
| -6 |
| user output |
|---|
| (empty) |
Test 5
Verdict: WRONG ANSWER
| input |
|---|
| 3 7 2 6 2 2 3 |
| correct output |
|---|
| 7 |
| user output |
|---|
| 1 |
Test 6
Verdict: WRONG ANSWER
| input |
|---|
| 3 3 2 7 9 3 8 |
| correct output |
|---|
| 2 |
| user output |
|---|
| 5 |
Test 7
Verdict: RUNTIME ERROR
| input |
|---|
| 4 5 10 9 9 1 10 8 8 |
| correct output |
|---|
| -4 |
| user output |
|---|
| (empty) |
Test 8
Verdict: RUNTIME ERROR
| input |
|---|
| 4 3 2 7 9 3 8 4 6 |
| correct output |
|---|
| 1 |
| user output |
|---|
| (empty) |
Test 9
Verdict: RUNTIME ERROR
| input |
|---|
| 4 5 3 8 1 9 1 3 3 |
| correct output |
|---|
| 10 |
| user output |
|---|
| (empty) |
Test 10
Verdict: WRONG ANSWER
| input |
|---|
| 5 3 9 3 6 5 2 2 5 ... |
| correct output |
|---|
| 5 |
| user output |
|---|
| 9 |
Test 11
Verdict: WRONG ANSWER
| input |
|---|
| 5 10 8 10 1 2 4 10 2 ... |
| correct output |
|---|
| 17 |
| user output |
|---|
| 0 |
Test 12
Verdict: WRONG ANSWER
| input |
|---|
| 5 2 1 10 6 10 5 5 5 ... |
| correct output |
|---|
| 8 |
| user output |
|---|
| 0 |
Test 13
Verdict: WRONG ANSWER
| input |
|---|
| 5 8 9 2 6 3 5 1 1 ... |
| correct output |
|---|
| 3 |
| user output |
|---|
| 6 |
Test 14
Verdict: WRONG ANSWER
| input |
|---|
| 5 6 1 9 3 3 6 2 10 ... |
| correct output |
|---|
| 1 |
| user output |
|---|
| 14 |
Test 15
Verdict: WRONG ANSWER
| input |
|---|
| 5 1 9 9 3 4 10 10 5 ... |
| correct output |
|---|
| 1 |
| user output |
|---|
| 14 |
Test 16
Verdict: WRONG ANSWER
| input |
|---|
| 5 4 1 1 1 1 10 1 6 ... |
| correct output |
|---|
| -4 |
| user output |
|---|
| 14 |
Test 17
Verdict: WRONG ANSWER
| input |
|---|
| 5 3 8 4 5 10 8 5 10 ... |
| correct output |
|---|
| 1 |
| user output |
|---|
| 10 |
Test 18
Verdict: WRONG ANSWER
| input |
|---|
| 5 10 3 4 2 3 2 7 5 ... |
| correct output |
|---|
| 11 |
| user output |
|---|
| -3 |
Test 19
Verdict: WRONG ANSWER
| input |
|---|
| 5 4 6 5 5 1 2 4 2 ... |
| correct output |
|---|
| 1 |
| user output |
|---|
| 4 |
Test 20
Verdict: RUNTIME ERROR
| input |
|---|
| 10 3 9 3 6 5 2 2 5 ... |
| correct output |
|---|
| -5 |
| user output |
|---|
| (empty) |
Test 21
Verdict: RUNTIME ERROR
| input |
|---|
| 10 10 8 10 1 2 4 10 2 ... |
| correct output |
|---|
| 20 |
| user output |
|---|
| (empty) |
Test 22
Verdict: WRONG ANSWER
| input |
|---|
| 11 198730372 27838076 590195590 467423861 520495379 451366491 344173378 354694313 ... |
| correct output |
|---|
| 1075637330 |
| user output |
|---|
| 175813720 |
Test 23
Verdict: RUNTIME ERROR
| input |
|---|
| 10 8 9 2 6 3 5 1 1 ... |
| correct output |
|---|
| -3 |
| user output |
|---|
| (empty) |
Test 24
Verdict: RUNTIME ERROR
| input |
|---|
| 10 6 1 9 3 3 6 2 10 ... |
| correct output |
|---|
| -2 |
| user output |
|---|
| (empty) |
Test 25
Verdict: WRONG ANSWER
| input |
|---|
| 11 59249204 934941692 892631472 221963002 390559518 986350949 524427523 96444602 ... |
| correct output |
|---|
| 1389122128 |
| user output |
|---|
| 1415780505 |
Test 26
Verdict: RUNTIME ERROR
| input |
|---|
| 10 4 1 1 1 1 10 1 6 ... |
| correct output |
|---|
| -6 |
| user output |
|---|
| (empty) |
Test 27
Verdict: WRONG ANSWER
| input |
|---|
| 11 244103474 837431431 342493822 470738321 776814822 489180570 330726191 578205540 ... |
| correct output |
|---|
| -124259424 |
| user output |
|---|
| 1777847798 |
Test 28
Verdict: RUNTIME ERROR
| input |
|---|
| 10 10 3 4 2 3 2 7 5 ... |
| correct output |
|---|
| 4 |
| user output |
|---|
| (empty) |
Test 29
Verdict: WRONG ANSWER
| input |
|---|
| 11 391337048 538883744 535937150 532332526 8099343 143698367 339543270 152590624 ... |
| correct output |
|---|
| 246913369 |
| user output |
|---|
| 1226601034 |
Test 30
Verdict: WRONG ANSWER
| input |
|---|
| 101 3 906523441 3 585063857 454895875 2 2 469855690 ... |
| correct output |
|---|
| -1950121670 |
| user output |
|---|
| 54724742 |
Test 31
Verdict: RUNTIME ERROR
| input |
|---|
| 100 773442532 122816 137572579 324627123 157577940 253498609 99147813 425825313 ... |
| correct output |
|---|
| 2484533534 |
| user output |
|---|
| (empty) |
Test 32
Verdict: RUNTIME ERROR
| input |
|---|
| 100 198730372 27838076 590195590 467423861 520495379 451366491 344173378 354694313 ... |
| correct output |
|---|
| 1162250085 |
| user output |
|---|
| (empty) |
Test 33
Verdict: RUNTIME ERROR
| input |
|---|
| 100 760367935 901888417 130275571 548496961 3 469291685 20130523 1 ... |
| correct output |
|---|
| -513884705 |
| user output |
|---|
| (empty) |
Test 34
Verdict: RUNTIME ERROR
| input |
|---|
| 100 587586158 1 918715995 3 3 641621091 151896000 241061404 ... |
| correct output |
|---|
| 4449680753 |
| user output |
|---|
| (empty) |
Test 35
Verdict: RUNTIME ERROR
| input |
|---|
| 100 59249204 934941692 892631472 221963002 390559518 986350949 524427523 96444602 ... |
| correct output |
|---|
| 2289597915 |
| user output |
|---|
| (empty) |
Test 36
Verdict: WRONG ANSWER
| input |
|---|
| 101 356460601 1 68992860 1 1 638932295 568887059 653343572 ... |
| correct output |
|---|
| -1011275811 |
| user output |
|---|
| -1124014452 |
Test 37
Verdict: RUNTIME ERROR
| input |
|---|
| 100 244103474 837431431 342493822 470738321 776814822 489180570 330726191 578205540 ... |
| correct output |
|---|
| -3347612884 |
| user output |
|---|
| (empty) |
Test 38
Verdict: RUNTIME ERROR
| input |
|---|
| 100 257096283 933290530 2 876668629 453495728 12239373 2 822553808 ... |
| correct output |
|---|
| -5234322969 |
| user output |
|---|
| (empty) |
Test 39
Verdict: WRONG ANSWER
| input |
|---|
| 101 391337048 538883744 535937150 532332526 8099343 143698367 339543270 152590624 ... |
| correct output |
|---|
| 1057263569 |
| user output |
|---|
| 300496342 |
Test 40
Verdict: RUNTIME ERROR
| input |
|---|
| 200 3 906523441 3 585063857 454895875 2 2 469855690 ... |
| correct output |
|---|
| -1859110273 |
| user output |
|---|
| (empty) |
Test 41
Verdict: WRONG ANSWER
| input |
|---|
| 201 773442532 122816 137572579 324627123 157577940 253498609 99147813 425825313 ... |
| correct output |
|---|
| -1706556434 |
| user output |
|---|
| -2022075534 |
Test 42
Verdict: RUNTIME ERROR
| input |
|---|
| 200 198730372 27838076 590195590 467423861 520495379 451366491 344173378 354694313 ... |
| correct output |
|---|
| 2881192575 |
| user output |
|---|
| (empty) |
Test 43
Verdict: RUNTIME ERROR
| input |
|---|
| 200 760367935 901888417 130275571 548496961 3 469291685 20130523 1 ... |
| correct output |
|---|
| 367410203 |
| user output |
|---|
| (empty) |
Test 44
Verdict: WRONG ANSWER
| input |
|---|
| 201 587586158 1 918715995 3 3 641621091 151896000 241061404 ... |
| correct output |
|---|
| 6064184122 |
| user output |
|---|
| 1224136761 |
Test 45
Verdict: RUNTIME ERROR
| input |
|---|
| 200 59249204 934941692 892631472 221963002 390559518 986350949 524427523 96444602 ... |
| correct output |
|---|
| -541796892 |
| user output |
|---|
| (empty) |
Test 46
Verdict: RUNTIME ERROR
| input |
|---|
| 200 356460601 1 68992860 1 1 638932295 568887059 653343572 ... |
| correct output |
|---|
| -3818748427 |
| user output |
|---|
| (empty) |
Test 47
Verdict: WRONG ANSWER
| input |
|---|
| 201 244103474 837431431 342493822 470738321 776814822 489180570 330726191 578205540 ... |
| correct output |
|---|
| 1128073230 |
| user output |
|---|
| 687935289 |
Test 48
Verdict: RUNTIME ERROR
| input |
|---|
| 200 257096283 933290530 2 876668629 453495728 12239373 2 822553808 ... |
| correct output |
|---|
| -4097764173 |
| user output |
|---|
| (empty) |
Test 49
Verdict: WRONG ANSWER
| input |
|---|
| 201 391337048 538883744 535937150 532332526 8099343 143698367 339543270 152590624 ... |
| correct output |
|---|
| 4209206317 |
| user output |
|---|
| 329597178 |
Test 50
Verdict: WRONG ANSWER
| input |
|---|
| 1001 3 906523441 3 585063857 454895875 2 2 469855690 ... |
| correct output |
|---|
| 797530744 |
| user output |
|---|
| 1798332957 |
Test 51
Verdict: RUNTIME ERROR
| input |
|---|
| 1000 773442532 122816 137572579 324627123 157577940 253498609 99147813 425825313 ... |
| correct output |
|---|
| -6859401550 |
| user output |
|---|
| (empty) |
Test 52
Verdict: RUNTIME ERROR
| input |
|---|
| 1000 198730372 27838076 590195590 467423861 520495379 451366491 344173378 354694313 ... |
| correct output |
|---|
| 3341433705 |
| user output |
|---|
| (empty) |
Test 53
Verdict: RUNTIME ERROR
| input |
|---|
| 1000 760367935 901888417 130275571 548496961 3 469291685 20130523 1 ... |
| correct output |
|---|
| 3932941646 |
| user output |
|---|
| (empty) |
Test 54
Verdict: RUNTIME ERROR
| input |
|---|
| 1000 587586158 1 918715995 3 3 641621091 151896000 241061404 ... |
| correct output |
|---|
| 12940904658 |
| user output |
|---|
| (empty) |
Test 55
Verdict: RUNTIME ERROR
| input |
|---|
| 1000 59249204 934941692 892631472 221963002 390559518 986350949 524427523 96444602 ... |
| correct output |
|---|
| -11353638361 |
| user output |
|---|
| (empty) |
Test 56
Verdict: WRONG ANSWER
| input |
|---|
| 1001 356460601 1 68992860 1 1 638932295 568887059 653343572 ... |
| correct output |
|---|
| 196162653 |
| user output |
|---|
| -135682819 |
Test 57
Verdict: RUNTIME ERROR
| input |
|---|
| 1000 244103474 837431431 342493822 470738321 776814822 489180570 330726191 578205540 ... |
| correct output |
|---|
| 8993059628 |
| user output |
|---|
| (empty) |
Test 58
Verdict: RUNTIME ERROR
| input |
|---|
| 1000 257096283 933290530 2 876668629 453495728 12239373 2 822553808 ... |
| correct output |
|---|
| -11284740290 |
| user output |
|---|
| (empty) |
Test 59
Verdict: WRONG ANSWER
| input |
|---|
| 1001 391337048 538883744 535937150 532332526 8099343 143698367 339543270 152590624 ... |
| correct output |
|---|
| 12730443353 |
| user output |
|---|
| 1338884475 |
Test 60
Verdict: RUNTIME ERROR
| input |
|---|
| 100000 3 906523441 3 585063857 454895875 2 2 469855690 ... |
| correct output |
|---|
| 105607728400 |
| user output |
|---|
| (empty) |
Test 61
Verdict: RUNTIME ERROR
| input |
|---|
| 100000 773442532 122816 137572579 324627123 157577940 253498609 99147813 425825313 ... |
| correct output |
|---|
| 21174476635 |
| user output |
|---|
| (empty) |
Test 62
Verdict: RUNTIME ERROR
| input |
|---|
| 100000 198730372 27838076 590195590 467423861 520495379 451366491 344173378 354694313 ... |
| correct output |
|---|
| 65624350916 |
| user output |
|---|
| (empty) |
Test 63
Verdict: RUNTIME ERROR
| input |
|---|
| 100000 760367935 901888417 130275571 548496961 3 469291685 20130523 1 ... |
| correct output |
|---|
| 66836037029 |
| user output |
|---|
| (empty) |
Test 64
Verdict: RUNTIME ERROR
| input |
|---|
| 100000 587586158 1 918715995 3 3 641621091 151896000 241061404 ... |
| correct output |
|---|
| -87105533715 |
| user output |
|---|
| (empty) |
Test 65
Verdict: RUNTIME ERROR
| input |
|---|
| 100000 59249204 934941692 892631472 221963002 390559518 986350949 524427523 96444602 ... |
| correct output |
|---|
| -1093858395 |
| user output |
|---|
| (empty) |
Test 66
Verdict: WRONG ANSWER
| input |
|---|
| 99999 356460601 1 68992860 1 1 638932295 568887059 653343572 ... |
| correct output |
|---|
| -28178672820 |
| user output |
|---|
| 630653266 |
Test 67
Verdict: WRONG ANSWER
| input |
|---|
| 99999 244103474 837431431 342493822 470738321 776814822 489180570 330726191 578205540 ... |
| correct output |
|---|
| 72715249868 |
| user output |
|---|
| -1884842068 |
Test 68
Verdict: WRONG ANSWER
| input |
|---|
| 99999 257096283 933290530 2 876668629 453495728 12239373 2 822553808 ... |
| correct output |
|---|
| -46790665125 |
| user output |
|---|
| -485434394 |
Test 69
Verdict: WRONG ANSWER
| input |
|---|
| 99999 391337048 538883744 535937150 532332526 8099343 143698367 339543270 152590624 ... |
| correct output |
|---|
| 12190306919 |
| user output |
|---|
| 2107274198 |
