CSES - Datatähti 2025 alku - Results
Submission details
Task:Robotti
Sender:osmukka
Submission time:2024-11-04 17:34:46 +0200
Language:C++ (C++17)
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
Test results
testverdicttimegroup
#10.00 s1, 2details
#20.00 s1, 2details
#30.00 s1, 2details
#40.00 s1, 2details
#50.00 s1, 2details
#60.00 s1, 2details
#70.00 s1, 2details
#80.00 s1, 2details
#90.00 s1, 2details
#100.00 s1, 2details
#110.00 s1, 2details
#120.00 s2details
#130.00 s2details
#140.00 s2details
#150.00 s2details
#160.00 s2details
#170.00 s2details
#180.00 s2details
#190.00 s2details
#200.00 s2details
#210.00 s2details
#220.00 s2details
#230.00 s2details
#240.00 s2details

Compiler report

input/code.cpp: In function 'int main()':
input/code.cpp:38:31: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   38 |         d_right = robot_index < coin_rooms.size()-1 ? coin_rooms[robot_index+1]-coin_rooms[robot_index] : 999999;
      |                   ~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~

Code

#include <stdlib.h>
#include <iostream>
#include <vector>
#include <string>

int main()
{
    int amount = 0;
    char* rooms;
    int robot_index = 0;
    int steps = 0;
    int coins = 0;

    std::cin >> amount;
    rooms = (char*)malloc(amount);
    std::cin >> rooms[amount];

    std::vector<int> coin_rooms;
    for(int i = 0; i < amount; i++)
    {
        switch(rooms[i])
        {
            case '*':
                coin_rooms.push_back(i);
                break;
            case 'R':
                robot_index = coin_rooms.size();
                coin_rooms.push_back(i);
                break;
        }
    }

    int d_left;
    int d_right;
    while(1)
    {
        d_left = robot_index > 0 ? coin_rooms[robot_index]-coin_rooms[robot_index-1] : 999999;
        d_right = robot_index < coin_rooms.size()-1 ? coin_rooms[robot_index+1]-coin_rooms[robot_index] : 999999;

        if(d_left < d_right)
        {
            steps += d_left;
            coin_rooms.erase(coin_rooms.begin()+robot_index);
            robot_index--;
            coins++;
        }
        else if(d_right < d_left)
        {
            steps += d_right;
            coin_rooms.erase(coin_rooms.begin()+robot_index);
            coins++;
        }
        else if(d_left == d_right)
        {
            break;
        }
    }

    std::cout << steps << " " << coins << "\n";
    return 0;
}

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
(empty)

Test 4

Group: 1, 2

Verdict:

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

correct output
0 0

user output
(empty)

Test 5

Group: 1, 2

Verdict:

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

correct output
947 9

user output
(empty)

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
(empty)

Test 8

Group: 1, 2

Verdict:

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

correct output
0 0

user output
(empty)

Test 9

Group: 1, 2

Verdict:

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

correct output
0 0

user output
(empty)

Test 10

Group: 1, 2

Verdict:

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

correct output
999 999

user output
(empty)

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
(empty)

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
(empty)

Test 15

Group: 2

Verdict:

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

correct output
9999 9999

user output
(empty)

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:

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

correct output
0 0

user output
(empty)

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)