CSES - Datatähti 2025 alku - Results
Submission details
Task:Robotti
Sender:patchouli
Submission time:2024-10-29 10:48:21 +0200
Language:C
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
Test results
testverdicttimegroup
#10.00 s1, 2details
#20.00 s1, 2details
#30.00 s1, 2details
#4ACCEPTED0.00 s1, 2details
#50.00 s1, 2details
#60.00 s1, 2details
#70.00 s1, 2details
#8ACCEPTED0.00 s1, 2details
#9ACCEPTED0.00 s1, 2details
#100.00 s1, 2details
#110.00 s1, 2details
#120.12 s2details
#130.00 s2details
#140.10 s2details
#150.07 s2details
#160.00 s2details
#170.00 s2details
#18--2details
#19--2details
#20ACCEPTED0.00 s2details
#21--2details
#22--2details
#23--2details
#240.00 s2details

Compiler report

input/code.c: In function 'main':
input/code.c:6:3: warning: ignoring return value of 'scanf' declared with attribute 'warn_unused_result' [-Wunused-result]
    6 |   scanf("%i\n", &n);
      |   ^~~~~~~~~~~~~~~~~
input/code.c:8:3: warning: ignoring return value of 'fgets' declared with attribute 'warn_unused_result' [-Wunused-result]
    8 |   fgets(rooms, n, stdin);
      |   ^~~~~~~~~~~~~~~~~~~~~~
input/code.c:58:12: warning: 'c2' may be used uninitialized in this function [-Wmaybe-uninitialized]
   58 |       rooms[c2] = 'R';
      |            ^
input/code.c:64:16: warning: 'c1' may be used uninitialized in this function [-Wmaybe-uninitialized]
   64 |       long int d1 = r - c1;
      |                ^~
input/code.c:17:14: warning: 'c0' may be used uninitialized in this function [-Wmaybe-uninitialized]
   17 |     for (int i = c0; i < n; i++) {
      |              ^
input/code.c:54:10: warning: 'r' may be used uninitialized in this function [-Wmaybe-uninitialized]
   54 |     r...

Code

#include <stdio.h>
#include <stdlib.h>
int main() {
int n;
scanf("%i\n", &n);
char *rooms = calloc(n, sizeof(char));
fgets(rooms, n, stdin);
long int r, c0, c1, c2, c5 = 0;
char c4 = 0;
long unsigned int coins = 0;
long unsigned int odometer = 0;
for (int j = 0; j < n; j++) {
int c3 = 0;
c4 = 0;
// first pass: look out from the left
for (int i = c0; i < n; i++) {
char v = rooms[i];
if (v == 'R') {
r = i;
if (c4 == 2) {
c1 = c3;
c4 = 1;
} else {
c4 = 4;
}
}
if (v == '*') {
c5 = c3;
c3 = i;
if (c4 == 0) {
c4 = 2;
} else if (c4 == 1) {
c2 = c3;
c4 = 3;
break;
} else if (c4 == 4) {
c2 = c3;
//printf("FUCK %i\n",c3);
break;
} else {
c1 = c3;
};
}
}
/*for (int k = 0; k < n; k++) {
if (k != c0) {
printf("%c", rooms[k]);
} else {
printf("!");
}
}
printf("\n%lu\n", r);*/
rooms[r] = '.';
if (c4 == 4) {
long int d2 = c2 - r;
r = c2;
rooms[c2] = 'R';
c0 = 0;
odometer += d2;
coins++;
continue;
} else if (c4 > 0) {
long int d1 = r - c1;
if (c4 == 3) {
long int d2 = c2 - r;
if (d1 > d2) {
r = c2;
rooms[c2] = 'R';
c0 = c5;
odometer += d2;
coins++;
continue;
} else if (d2 == d1) {
break;
}
}
r = c1;
rooms[c1] = 'R';
odometer += d1;
coins++;
c0 = 0;
} else {
break;
}
}
printf("%lu %lu\n", odometer, coins);
}

Test details

Test 1

Group: 1, 2

Verdict:

input
1
R

correct output
0 0

user output
(empty)

Test 2

Group: 1, 2

Verdict:

input
10
...R......

correct output
0 0

user output
(empty)

Test 3

Group: 1, 2

Verdict:

input
10
**.R...***

correct output
12 5

user output
11 10

Test 4

Group: 1, 2

Verdict: ACCEPTED

input
10
***R******

correct output
0 0

user output
0 0

Test 5

Group: 1, 2

Verdict:

input
1000
R................................

correct output
947 9

user output
947 1000

Test 6

Group: 1, 2

Verdict:

input
1000
.................................

correct output
886 9

user output
(empty)

Test 7

Group: 1, 2

Verdict:

input
1000
.....*..*....**..**..*......*....

correct output
1287 400

user output
2276 1000

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:

input
1000
R*****************************...

correct output
999 999

user output
998 1000

Test 11

Group: 1, 2

Verdict:

input
1000
******************************...

correct output
999 999

user output
(empty)

Test 12

Group: 2

Verdict:

input
10000
.......**........*...........*...

correct output
10971 999

user output
10971 10000

Test 13

Group: 2

Verdict:

input
10000
*..*....*......*.....*..*........

correct output
9999 999

user output
(empty)

Test 14

Group: 2

Verdict:

input
10000
*.*.*...**.*...*....**.**.**.....

correct output
18766 5000

user output
28764 10000

Test 15

Group: 2

Verdict:

input
10000
R*****************************...

correct output
9999 9999

user output
9998 10000

Test 16

Group: 2

Verdict:

input
10000
******************************...

correct output
9999 9999

user output
(empty)

Test 17

Group: 2

Verdict:

input
200000
.................................

correct output
0 0

user output
(empty)

Test 18

Group: 2

Verdict:

input
200000
.................................

correct output
299934 10000

user output
(empty)

Test 19

Group: 2

Verdict:

input
200000
**.***....**..**.....***.*..*....

correct output
299998 100000

user output
(empty)

Test 20

Group: 2

Verdict: ACCEPTED

input
200000
******************************...

correct output
0 0

user output
0 0

Test 21

Group: 2

Verdict:

input
200000
R................................

correct output
133765 3

user output
(empty)

Test 22

Group: 2

Verdict:

input
200000
R................................

correct output
199982 5000

user output
(empty)

Test 23

Group: 2

Verdict:

input
200000
R*****************************...

correct output
199999 199999

user output
(empty)

Test 24

Group: 2

Verdict:

input
200000
******************************...

correct output
199999 199999

user output
(empty)