Task: | Robotti |
Sender: | zli0122 |
Submission time: | 2024-10-28 10:49:05 +0200 |
Language: | C++ (C++11) |
Status: | READY |
Result: | 0 |
group | verdict | score |
---|---|---|
#1 | RUNTIME ERROR | 0 |
#2 | RUNTIME ERROR | 0 |
test | verdict | time | group | |
---|---|---|---|---|
#1 | RUNTIME ERROR | 0.00 s | 1, 2 | details |
#2 | RUNTIME ERROR | 0.00 s | 1, 2 | details |
#3 | RUNTIME ERROR | 0.00 s | 1, 2 | details |
#4 | WRONG ANSWER | 0.00 s | 1, 2 | details |
#5 | RUNTIME ERROR | 0.00 s | 1, 2 | details |
#6 | RUNTIME ERROR | 0.00 s | 1, 2 | details |
#7 | RUNTIME ERROR | 0.00 s | 1, 2 | details |
#8 | WRONG ANSWER | 0.00 s | 1, 2 | details |
#9 | WRONG ANSWER | 0.00 s | 1, 2 | details |
#10 | RUNTIME ERROR | 0.00 s | 1, 2 | details |
#11 | WRONG ANSWER | 0.00 s | 1, 2 | details |
#12 | RUNTIME ERROR | 0.00 s | 2 | details |
#13 | WRONG ANSWER | 0.00 s | 2 | details |
#14 | RUNTIME ERROR | 0.00 s | 2 | details |
#15 | RUNTIME ERROR | 0.00 s | 2 | details |
#16 | WRONG ANSWER | 0.00 s | 2 | details |
#17 | RUNTIME ERROR | 0.01 s | 2 | details |
#18 | RUNTIME ERROR | 0.01 s | 2 | details |
#19 | RUNTIME ERROR | 0.01 s | 2 | details |
#20 | WRONG ANSWER | 0.01 s | 2 | details |
#21 | RUNTIME ERROR | 0.01 s | 2 | details |
#22 | RUNTIME ERROR | 0.01 s | 2 | details |
#23 | RUNTIME ERROR | 0.01 s | 2 | details |
#24 | WRONG ANSWER | 0.01 s | 2 | details |
Compiler report
input/code.cpp: In function 'int main()': input/code.cpp:48:42: warning: 'coins' may be used uninitialized in this function [-Wmaybe-uninitialized] 48 | cout << steps << " " << coins << "\n"; | ^~~~ input/code.cpp:43:31: warning: 'steps' may be used uninitialized in this function [-Wmaybe-uninitialized] 43 | steps += r; | ~~~~~~^~~~ input/code.cpp:26:42: warning: 'robot_pos' may be used uninitialized in this function [-Wmaybe-uninitialized] 26 | for (int i=positions.size()-1; i > robot_pos; i--){ | ~~^~~~~~~~~~~
Code
#include <bits/stdc++.h> using namespace std; int main() { int n; cin >> n; stack<int> left, right; vector<int> positions; int robot_pos; string s; cin >> s; for (int i=0; i < n; i++){ if (s[i] == 'R') robot_pos = positions.size(); if (s[i] != '.') positions.push_back(i); } stack<int> dleft, dright; dleft.push(positions[0]); for (int i=1; i <= robot_pos; i++){ dleft.push(positions[i]-positions[i-1]); } for (int i=positions.size()-1; i > robot_pos; i--){ dright.push(positions[i]-positions[i-1]); } int steps, coins; while (true) { int l = dleft.top(); int r = dright.top(); if (l == r) break; if (dleft.empty() || dright.empty()) break; dleft.pop(); dright.pop(); if (l < r) { dright.push(l+r); steps += l; } else { dleft.push(l+r); steps += r; } coins++; } cout << steps << " " << coins << "\n"; }
Test details
Test 1
Group: 1, 2
Verdict: RUNTIME ERROR
input |
---|
1 R |
correct output |
---|
0 0 |
user output |
---|
(empty) |
Test 2
Group: 1, 2
Verdict: RUNTIME ERROR
input |
---|
10 ...R...... |
correct output |
---|
0 0 |
user output |
---|
(empty) |
Test 3
Group: 1, 2
Verdict: RUNTIME ERROR
input |
---|
10 **.R...*** |
correct output |
---|
12 5 |
user output |
---|
(empty) |
Test 4
Group: 1, 2
Verdict: WRONG ANSWER
input |
---|
10 ***R****** |
correct output |
---|
0 0 |
user output |
---|
1431344120 5461 |
Test 5
Group: 1, 2
Verdict: RUNTIME ERROR
input |
---|
1000 R................................ |
correct output |
---|
947 9 |
user output |
---|
(empty) |
Test 6
Group: 1, 2
Verdict: RUNTIME ERROR
input |
---|
1000 ................................. |
correct output |
---|
886 9 |
user output |
---|
(empty) |
Test 7
Group: 1, 2
Verdict: RUNTIME ERROR
input |
---|
1000 .....*..*....**..**..*......*.... |
correct output |
---|
1287 400 |
user output |
---|
(empty) |
Test 8
Group: 1, 2
Verdict: WRONG ANSWER
input |
---|
1000 ************.*****************... |
correct output |
---|
0 0 |
user output |
---|
1431344120 5461 |
Test 9
Group: 1, 2
Verdict: WRONG ANSWER
input |
---|
1000 ******************************... |
correct output |
---|
0 0 |
user output |
---|
1431344120 5461 |
Test 10
Group: 1, 2
Verdict: RUNTIME ERROR
input |
---|
1000 R*****************************... |
correct output |
---|
999 999 |
user output |
---|
(empty) |
Test 11
Group: 1, 2
Verdict: WRONG ANSWER
input |
---|
1000 ******************************... |
correct output |
---|
999 999 |
user output |
---|
1431344120 5461 |
Test 12
Group: 2
Verdict: RUNTIME ERROR
input |
---|
10000 .......**........*...........*... |
correct output |
---|
10971 999 |
user output |
---|
(empty) |
Test 13
Group: 2
Verdict: WRONG ANSWER
input |
---|
10000 *..*....*......*.....*..*........ |
correct output |
---|
9999 999 |
user output |
---|
1431344120 5461 |
Test 14
Group: 2
Verdict: RUNTIME ERROR
input |
---|
10000 *.*.*...**.*...*....**.**.**..... |
correct output |
---|
18766 5000 |
user output |
---|
(empty) |
Test 15
Group: 2
Verdict: RUNTIME ERROR
input |
---|
10000 R*****************************... |
correct output |
---|
9999 9999 |
user output |
---|
(empty) |
Test 16
Group: 2
Verdict: WRONG ANSWER
input |
---|
10000 ******************************... |
correct output |
---|
9999 9999 |
user output |
---|
1431344120 5461 |
Test 17
Group: 2
Verdict: RUNTIME ERROR
input |
---|
200000 ................................. |
correct output |
---|
0 0 |
user output |
---|
(empty) |
Test 18
Group: 2
Verdict: RUNTIME ERROR
input |
---|
200000 ................................. |
correct output |
---|
299934 10000 |
user output |
---|
(empty) |
Test 19
Group: 2
Verdict: RUNTIME ERROR
input |
---|
200000 **.***....**..**.....***.*..*.... |
correct output |
---|
299998 100000 |
user output |
---|
(empty) |
Test 20
Group: 2
Verdict: WRONG ANSWER
input |
---|
200000 ******************************... |
correct output |
---|
0 0 |
user output |
---|
1431344120 5461 |
Test 21
Group: 2
Verdict: RUNTIME ERROR
input |
---|
200000 R................................ |
correct output |
---|
133765 3 |
user output |
---|
(empty) |
Test 22
Group: 2
Verdict: RUNTIME ERROR
input |
---|
200000 R................................ |
correct output |
---|
199982 5000 |
user output |
---|
(empty) |
Test 23
Group: 2
Verdict: RUNTIME ERROR
input |
---|
200000 R*****************************... |
correct output |
---|
199999 199999 |
user output |
---|
(empty) |
Test 24
Group: 2
Verdict: WRONG ANSWER
input |
---|
200000 ******************************... |
correct output |
---|
199999 199999 |
user output |
---|
1431344120 5461 |