| Task: | Kulut |
| Sender: | xenial |
| Submission time: | 2023-01-21 13:46:22 +0200 |
| Language: | C++ (C++17) |
| Status: | READY |
| Result: | 0 |
| group | verdict | score |
|---|---|---|
| #1 | RUNTIME ERROR | 0 |
| test | verdict | time | |
|---|---|---|---|
| #1 | ACCEPTED | 0.00 s | details |
| #2 | ACCEPTED | 0.00 s | details |
| #3 | ACCEPTED | 0.00 s | details |
| #4 | ACCEPTED | 0.00 s | details |
| #5 | ACCEPTED | 0.00 s | details |
| #6 | ACCEPTED | 0.00 s | details |
| #7 | ACCEPTED | 0.00 s | details |
| #8 | ACCEPTED | 0.00 s | details |
| #9 | ACCEPTED | 0.00 s | details |
| #10 | ACCEPTED | 0.00 s | details |
| #11 | RUNTIME ERROR | 0.00 s | details |
Compiler report
input/code.cpp: In function 'int main()':
input/code.cpp:50:22: warning: 'amt' may be used uninitialized in this function [-Wmaybe-uninitialized]
50 | p[neg.top()] += amt;
| ~~~~~~~~~~~~~^~~~~~Code
#include <bits/stdc++.h>
#define pb push_back
#define vi vector<int>
#define sz size
using namespace std;
int N, p[4], total;
int main() {
ios_base::sync_with_stdio(false);
cin >> N;
for (int i = 0; i < N; i++) {
char c;
cin >> c;
int s;
cin >> s;
p[c - 'A'] += s;
total += s;
}
int target = total / 4;
vector<pair<pair<char, char>, int>> ans;
stack<int> pos, neg;
for (int i = 0; i < 4; i++) {
if (p[i] > target) pos.push(i);
else if (p[i] < target) neg.push(i);
}
while (true) {
pair<char,char> xd = make_pair('A' + neg.top(), 'A' + pos.top());
int amt;
int pdiff = abs(p[pos.top()] - target);
int ndiff = abs(p[neg.top()] - target);
if (pdiff == ndiff) {
amt = pdiff;
} else if (pdiff > ndiff) {
amt = ndiff;
} else if (pdiff < ndiff) {
amt = pdiff;
}
p[pos.top()] -= amt;
p[neg.top()] += amt;
if (p[pos.top()] == target) pos.pop();
if (p[neg.top()] == target) neg.pop();
ans.pb(make_pair(xd, amt));
if (pos.sz() == 0 && neg.sz() == 0) {
break;
}
}
cout << ans.sz() << endl;
for (auto r : ans) {
cout << r.first.first << " " << r.first.second << " " << r.second << endl;
}
for (int i = 0; i < 4; i++)
cout << p[i] << endl;
return 0;
}Test details
Test 1
Verdict: ACCEPTED
| input |
|---|
| 100 C 224 D 4 D 624 D 64 ... |
| correct output |
|---|
| 3 A B 630 C B 1636 C D 1470 |
| user output |
|---|
| 3 C D 1470 C B 1636 A B 630 13126 ... |
Test 2
Verdict: ACCEPTED
| input |
|---|
| 100 D 768 B 608 A 116 C 80 ... |
| correct output |
|---|
| 3 B A 756 B C 1668 D C 1776 |
| user output |
|---|
| 3 D C 1776 B C 1668 B A 756 11876 ... |
Test 3
Verdict: ACCEPTED
| input |
|---|
| 100 B 184 C 840 D 648 A 876 ... |
| correct output |
|---|
| 3 A B 1131 B C 190 C D 297 |
| user output |
|---|
| 3 C D 107 A D 190 A B 941 11543 ... |
Test 4
Verdict: ACCEPTED
| input |
|---|
| 100 C 560 D 664 D 632 C 944 ... |
| correct output |
|---|
| 3 B A 3230 C B 2572 D C 1594 |
| user output |
|---|
| 3 D A 1594 C A 978 B A 658 11766 ... |
Test 5
Verdict: ACCEPTED
| input |
|---|
| 100 B 20 A 664 D 504 A 248 ... |
| correct output |
|---|
| 3 A B 138 B C 652 C D 350 |
| user output |
|---|
| 3 B D 350 B C 164 A C 138 12786 ... |
Test 6
Verdict: ACCEPTED
| input |
|---|
| 100 B 204 D 520 C 500 C 256 ... |
| correct output |
|---|
| 3 B A 285 B C 482 C D 1321 |
| user output |
|---|
| 3 C D 839 B D 482 B A 285 11979 ... |
Test 7
Verdict: ACCEPTED
| input |
|---|
| 100 B 672 B 840 A 712 C 640 ... |
| correct output |
|---|
| 3 B A 324 C B 5128 D C 2920 |
| user output |
|---|
| 3 D B 2920 C B 1884 C A 324 13828 ... |
Test 8
Verdict: ACCEPTED
| input |
|---|
| 100 C 860 D 732 A 952 C 940 ... |
| correct output |
|---|
| 3 A B 24 C B 536 D C 2252 |
| user output |
|---|
| 3 D C 1716 D B 536 A B 24 12804 ... |
Test 9
Verdict: ACCEPTED
| input |
|---|
| 100 C 84 A 592 B 840 C 708 ... |
| correct output |
|---|
| 3 A B 115 B C 1746 D C 3791 |
| user output |
|---|
| 3 D C 3791 B C 1631 A C 115 14023 ... |
Test 10
Verdict: ACCEPTED
| input |
|---|
| 1 A 100 |
| correct output |
|---|
| 3 B A 75 C B 50 D C 25 |
| user output |
|---|
| 3 D A 25 C A 25 B A 25 25 ... |
Test 11
Verdict: RUNTIME ERROR
| input |
|---|
| 4 A 25 B 25 C 25 D 25 |
| correct output |
|---|
| 0 |
| user output |
|---|
| (empty) |
