Task: | Robotti |
Sender: | -=SharpS=- |
Submission time: | 2024-10-28 17:59:28 +0200 |
Language: | C |
Status: | READY |
Result: | 30 |
group | verdict | score |
---|---|---|
#1 | ACCEPTED | 30 |
#2 | RUNTIME ERROR | 0 |
test | verdict | time | group | |
---|---|---|---|---|
#1 | ACCEPTED | 0.00 s | 1, 2 | details |
#2 | ACCEPTED | 0.00 s | 1, 2 | details |
#3 | ACCEPTED | 0.00 s | 1, 2 | details |
#4 | ACCEPTED | 0.00 s | 1, 2 | details |
#5 | ACCEPTED | 0.00 s | 1, 2 | details |
#6 | ACCEPTED | 0.00 s | 1, 2 | details |
#7 | ACCEPTED | 0.00 s | 1, 2 | details |
#8 | ACCEPTED | 0.00 s | 1, 2 | details |
#9 | ACCEPTED | 0.00 s | 1, 2 | details |
#10 | ACCEPTED | 0.00 s | 1, 2 | details |
#11 | ACCEPTED | 0.00 s | 1, 2 | details |
#12 | ACCEPTED | 0.01 s | 2 | details |
#13 | ACCEPTED | 0.01 s | 2 | details |
#14 | ACCEPTED | 0.01 s | 2 | details |
#15 | ACCEPTED | 0.02 s | 2 | details |
#16 | ACCEPTED | 0.04 s | 2 | details |
#17 | RUNTIME ERROR | 0.00 s | 2 | details |
#18 | RUNTIME ERROR | 0.00 s | 2 | details |
#19 | RUNTIME ERROR | 0.00 s | 2 | details |
#20 | RUNTIME ERROR | 0.00 s | 2 | details |
#21 | RUNTIME ERROR | 0.00 s | 2 | details |
#22 | RUNTIME ERROR | 0.00 s | 2 | details |
#23 | RUNTIME ERROR | 0.00 s | 2 | details |
#24 | RUNTIME ERROR | 0.00 s | 2 | details |
Compiler report
input/code.c: In function 'main': input/code.c:59:5: warning: ignoring return value of 'fgets' declared with attribute 'warn_unused_result' [-Wunused-result] 59 | fgets(jou, 100, stdin); | ^~~~~~~~~~~~~~~~~~~~~~ input/code.c:63:5: warning: ignoring return value of 'fgets' declared with attribute 'warn_unused_result' [-Wunused-result] 63 | fgets(room_buffer, roomc+1, stdin); | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Code
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <stdint.h> long get_ri(const char* rooms, long max) { long pos = 0; for (long i = 0; i < max; i++) { if (rooms[i] == 'R') { pos = i; break; } } return pos; } void get_left_right(const char* rooms, long* leftP, long* rightP, long ri, long max) { *leftP = -1; *rightP = -1; for (long i = ri; i >= 0; i--) { if (rooms[i] == '*') { *leftP = i; break; } } for (long i = ri; i <= max; i++) { if (rooms[i] == '*') { *rightP = i; break; } } } void get_distance_lr(long leftP, long rightP, long* out_distanceL, long* out_distanceR, long ri) { if (leftP < 0) { *out_distanceL = -1; } else { *out_distanceL = ri - leftP; } if (rightP < 0) { *out_distanceR = -1; } else { *out_distanceR = rightP - ri; } } void move_to(char* rooms, long* ri, long to) { rooms[to] = '.'; *ri = to; } int main() { char jou[100]; fgets(jou, 100, stdin); long roomc = atol(jou); char room_buffer[200000]; fgets(room_buffer, roomc+1, stdin); long robot_index = get_ri(room_buffer, roomc); long coins_collected = 0; long distance = 0; long leftP; long rightP; long distance_left; long distance_right; loop: get_left_right(room_buffer, &leftP, &rightP, robot_index, roomc); if (leftP == -1 && rightP == -1) goto halt; get_distance_lr(leftP, rightP, &distance_left, &distance_right, robot_index); if (distance_left <= 0) { goto move_right; } else if (distance_right <= 0) { goto move_left; } else if (distance_left < distance_right) { goto move_left; } else if (distance_right < distance_left) { goto move_right; } else { goto halt; } move_left: move_to(room_buffer, &robot_index, leftP); coins_collected++; distance = distance + distance_left; goto loop; move_right: move_to(room_buffer, &robot_index, rightP); coins_collected++; distance = distance + distance_right; goto loop; halt: printf("%li %li\n", distance, coins_collected); return 0; }
Test details
Test 1
Group: 1, 2
Verdict: ACCEPTED
input |
---|
1 R |
correct output |
---|
0 0 |
user output |
---|
0 0 |
Test 2
Group: 1, 2
Verdict: ACCEPTED
input |
---|
10 ...R...... |
correct output |
---|
0 0 |
user output |
---|
0 0 |
Test 3
Group: 1, 2
Verdict: ACCEPTED
input |
---|
10 **.R...*** |
correct output |
---|
12 5 |
user output |
---|
12 5 |
Test 4
Group: 1, 2
Verdict: ACCEPTED
input |
---|
10 ***R****** |
correct output |
---|
0 0 |
user output |
---|
0 0 |
Test 5
Group: 1, 2
Verdict: ACCEPTED
input |
---|
1000 R................................ |
correct output |
---|
947 9 |
user output |
---|
947 9 |
Test 6
Group: 1, 2
Verdict: ACCEPTED
input |
---|
1000 ................................. |
correct output |
---|
886 9 |
user output |
---|
886 9 |
Test 7
Group: 1, 2
Verdict: ACCEPTED
input |
---|
1000 .....*..*....**..**..*......*.... |
correct output |
---|
1287 400 |
user output |
---|
1287 400 |
Test 8
Group: 1, 2
Verdict: ACCEPTED
input |
---|
1000 ************.*****************... |
correct output |
---|
0 0 |
user output |
---|
0 0 |
Test 9
Group: 1, 2
Verdict: ACCEPTED
input |
---|
1000 ******************************... |
correct output |
---|
0 0 |
user output |
---|
0 0 |
Test 10
Group: 1, 2
Verdict: ACCEPTED
input |
---|
1000 R*****************************... |
correct output |
---|
999 999 |
user output |
---|
999 999 |
Test 11
Group: 1, 2
Verdict: ACCEPTED
input |
---|
1000 ******************************... |
correct output |
---|
999 999 |
user output |
---|
999 999 |
Test 12
Group: 2
Verdict: ACCEPTED
input |
---|
10000 .......**........*...........*... |
correct output |
---|
10971 999 |
user output |
---|
10971 999 |
Test 13
Group: 2
Verdict: ACCEPTED
input |
---|
10000 *..*....*......*.....*..*........ |
correct output |
---|
9999 999 |
user output |
---|
9999 999 |
Test 14
Group: 2
Verdict: ACCEPTED
input |
---|
10000 *.*.*...**.*...*....**.**.**..... |
correct output |
---|
18766 5000 |
user output |
---|
18766 5000 |
Test 15
Group: 2
Verdict: ACCEPTED
input |
---|
10000 R*****************************... |
correct output |
---|
9999 9999 |
user output |
---|
9999 9999 |
Test 16
Group: 2
Verdict: ACCEPTED
input |
---|
10000 ******************************... |
correct output |
---|
9999 9999 |
user output |
---|
9999 9999 |
Test 17
Group: 2
Verdict: RUNTIME ERROR
input |
---|
200000 ................................. |
correct output |
---|
0 0 |
user output |
---|
(empty) |
Error:
*** buffer overflow detected ***: terminated
Test 18
Group: 2
Verdict: RUNTIME ERROR
input |
---|
200000 ................................. |
correct output |
---|
299934 10000 |
user output |
---|
(empty) |
Error:
*** buffer overflow detected ***: terminated
Test 19
Group: 2
Verdict: RUNTIME ERROR
input |
---|
200000 **.***....**..**.....***.*..*.... |
correct output |
---|
299998 100000 |
user output |
---|
(empty) |
Error:
*** buffer overflow detected ***: terminated
Test 20
Group: 2
Verdict: RUNTIME ERROR
input |
---|
200000 ******************************... |
correct output |
---|
0 0 |
user output |
---|
(empty) |
Error:
*** buffer overflow detected ***: terminated
Test 21
Group: 2
Verdict: RUNTIME ERROR
input |
---|
200000 R................................ |
correct output |
---|
133765 3 |
user output |
---|
(empty) |
Error:
*** buffer overflow detected ***: terminated
Test 22
Group: 2
Verdict: RUNTIME ERROR
input |
---|
200000 R................................ |
correct output |
---|
199982 5000 |
user output |
---|
(empty) |
Error:
*** buffer overflow detected ***: terminated
Test 23
Group: 2
Verdict: RUNTIME ERROR
input |
---|
200000 R*****************************... |
correct output |
---|
199999 199999 |
user output |
---|
(empty) |
Error:
*** buffer overflow detected ***: terminated
Test 24
Group: 2
Verdict: RUNTIME ERROR
input |
---|
200000 ******************************... |
correct output |
---|
199999 199999 |
user output |
---|
(empty) |
Error:
*** buffer overflow detected ***: terminated