CSES - Datatähti 2025 alku - Results
Submission details
Task:Robotti
Sender:osmukka
Submission time:2024-11-06 10:31:16 +0200
Language:C
Status:COMPILE ERROR

Compiler report

input/code.c: In function 'main':
input/code.c:56:11: error: expected expression before ')' token
   56 |     while()
      |           ^
input/code.c:58:20: error: 'i' undeclared (first use in this function)
   58 |     for(int i = 0; i < amount; i++)
      |                    ^
input/code.c:58:20: note: each undeclared identifier is reported only once for each function it appears in
input/code.c:104:9: error: expected expression before ':' token
  104 |     std::cout << steps << " " << coins << "\n";
      |         ^
input/code.c:104:5: warning: label 'std' defined but not used [-Wunused-label]
  104 |     std::cout << steps << " " << coins << "\n";
      |     ^~~
input/code.c:50:5: warning: ignoring return value of 'read' declared with attribute 'warn_unused_result' [-Wunused-result]
   50 |     read(STDIN_FILENO, &rooms, 1);
      |     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Code

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>


int distance_left(char* array, int robot_index)
{

    for(int i = robot_index-1; i >= 0; i--)
    {
        if(array[i] == '*')
        {
            return robot_index - i;
        }
    }
    // If no coins exist to the left. Distance between two indices can't be -1.
    return -1;
}


int distance_right(char* array, int robot_index, const int array_len)
{
    for(int i = array_len-robot_index; i <= array_len; i--)
    {
        if(array[i] == '*')
        {
            return i - robot_index;
        }
    }
    // Distance cant be negative.
    return -1;
}


int main()
{
    char ch;
    int number_index = 0;
    char amount_str[7] = {0, 0, 0, 0, 0, 0, 0};
    int amount = 0;

    while(read(STDIN_FILENO, &ch, 1) > 0)
    {
        amount_str[number_index] = ch;
    }
    amount = atoi(amount_str);

    char* rooms = malloc(sizeof(char)*amount);
    read(STDIN_FILENO, &rooms, 1);

    int robot_index = 0;
    int steps = 0;
    int coins = 0;
 
    while()

    for(int i = 0; i < amount; i++)
    {
        if(rooms[i] == 'R')
        {
            robot_index = i;
            break;
        }
    }

    int d_left  = distance_left(rooms, robot_index);
    int d_right = distance_right(rooms, robot_index, amount);

    while(1)
    {
        //if(d_left == 0)
            d_left = distance_left(rooms, robot_index);
        //else if(d_right == 0)
            d_right = distance_right(rooms, robot_index, amount);

        if(d_left < d_right)
        {
            rooms[robot_index] = '.';
            robot_index--;
            rooms[robot_index] = 'R';
            steps += d_left;

            d_right += d_left;
            coins++;
            d_left = 0;
        }
        else if(d_right < d_left)
        {
            rooms[robot_index] = '.';
            robot_index++;
            rooms[robot_index] = 'R';

            steps += d_right;
            coins++;
            d_right = 0;
        }
        else
        {
            break;
        }
    }
 
    std::cout << steps << " " << coins << "\n";
    return 0;
}