Submission details
Task:Hypyt
Sender:NicholasAhman
Submission time:2025-11-04 20:25:56 +0200
Language:C++ (C++17)
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
#40
#50
Test results
testverdicttimegroup
#1ACCEPTED0.00 s1, 2, 3, 4, 5details
#2--1, 2, 3, 4, 5details
#3--1, 2, 3, 4, 5details
#40.02 s1, 2, 3, 4, 5details
#5ACCEPTED0.00 s1, 2, 3, 4, 5details
#6--2, 5details
#7--2, 5details
#8--2, 5details
#9--3, 4, 5details
#10--3, 4, 5details
#11--3, 4, 5details
#12--4, 5details
#13--4, 5details
#14--4, 5details
#15--5details
#16--5details
#17--5details
#18--5details
#19--5details
#20--5details
#21--5details
#220.00 s1, 2, 3, 4, 5details
#230.03 s1, 2, 3, 4, 5details
#24--5details
#25--5details
#26--5details
#27ACCEPTED0.06 s5details

Compiler report

input/code.cpp: In function 'int main()':
input/code.cpp:96:18: warning: unused variable 'len' [-Wunused-variable]
   96 |     const size_t len = read(0, input, 1024*1024*8);
      |                  ^~~

Code

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

#define __STDC_LIMIT_MACROS
#include <stdint.h>

size_t next_space = 0;
size_t idx = 0;

char *input;
char *output;

size_t width, height, n_questions;

size_t getnum() {
    next_space = strchr((input + idx), ' ') - (input + idx);
    (input + idx)[next_space] = '\0';
    size_t n = atoi((input + idx));
    idx += next_space + 1;

    return n;
}

size_t getnum_last() {
    next_space = strchr((input + idx), '\n') - (input + idx);
    (input + idx)[next_space] = '\0';
    size_t n = atoi((input + idx));
    idx += next_space + 1;

    return n;
}

inline size_t get_idx(size_t x, size_t y) {
    return ( x << 32 ) | y;
}

int get_jumps(size_t x1, size_t y1, size_t x2, size_t y2, size_t n_jumps, std::unordered_map<size_t, size_t> &covered) {
    covered.insert({get_idx(x1,y1), n_jumps});

    if (x1 == x2 && y1 == y2) {
        return 0;
    }

    std::vector<int> jumps;
    for (size_t i = 1; i < width + 1; i++) {
        if (i == x1) {
            continue;
        }

        if (output[i - 1 + (y1 - 1)*width] == '.' && covered.find(get_idx(i, y1)) == covered.end()) {
            // Safe square
            jumps.push_back(get_jumps(i, y1, x2, y2, n_jumps + 1, covered));
        } else if (output[i - 1 + (y1 - 1)*width] == '.' && covered[get_idx(i,y1)] > n_jumps) {
            jumps.push_back(get_jumps(i, y1, x2, y2, n_jumps + 1, covered));
        }
    }

    for (size_t i = 1; i < height + 1; i++) {
        if (i == y1) {
            continue;
        }

        if (output[x1-1+(i-1)*width] == '.' && covered.find(get_idx(x1, i)) == covered.end()) {
            // Safe square
            jumps.push_back(get_jumps(x1, i, x2, y2, n_jumps + 1, covered));
        } else if (output[x1-1 + (i-1)*width] == '.' && covered[get_idx(x1,i)] > n_jumps) {
            jumps.push_back(get_jumps(x1, i, x2, y2, n_jumps + 1, covered));
        }
    }

    int min = INT32_MAX;
    bool way_found = false;
    for (int jump : jumps) {
        if (jump != -1) {
            way_found = true;
        }

        if (jump < min && jump != -1) {
            min = jump;
        }
    }

    if (!way_found)
        return -1;
    else
        return min + 1;
}

int main() {

    input = (char *)malloc(1024*1024*8);
    const size_t len = read(0, input, 1024*1024*8);
    
    height = getnum();
    width = getnum();

    output = (char *)malloc((height) * (width));

    n_questions = getnum_last();

    for (size_t i = 0; i < height; i++) {
        next_space = strchr((input + idx), '\n') - (input + idx);
        memcpy(output + i * width, (input + idx), next_space);
        idx += next_space + 1;
    }

    std::unordered_map<size_t, size_t> covered{};
    for (size_t i = 0; i < n_questions; i++) {
        size_t y1 = getnum();
        size_t x1 = getnum();
        size_t y2 = getnum();
        size_t x2 = getnum_last();

        printf("%d\n", get_jumps(x1, y1, x2, y2, 0, covered));
    }

    return 0;
}

Test details

Test 1 (public)

Group: 1, 2, 3, 4, 5

Verdict: ACCEPTED

input
4 6 5
.*.***
*...**
*****.
*..*.*
...

correct output
1
0
3
3
-1

user output
1
0
3
3
-1

Test 2

Group: 1, 2, 3, 4, 5

Verdict:

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

correct output
1
2
1
2
2
...

user output
(empty)

Test 3

Group: 1, 2, 3, 4, 5

Verdict:

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

correct output
1
2
2
1
2
...

user output
(empty)

Test 4

Group: 1, 2, 3, 4, 5

Verdict:

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

correct output
3
4
2
3
4
...

user output
3
4
2
-1
4
...

Feedback: Incorrect character on line 4 col 1: expected "3", got "-1"

Test 5

Group: 1, 2, 3, 4, 5

Verdict: ACCEPTED

input
10 10 1
.****.****
**.**..***
**********
*******..*
...

correct output
7

user output
7

Test 6

Group: 2, 5

Verdict:

input
250 250 250
.*...*.....*******..**...*.......

correct output
2
3
3
2
2
...

user output
(empty)

Test 7

Group: 2, 5

Verdict:

input
250 250 250
...*......**.**.*.*..**..*..**...

correct output
2
2
2
2
3
...

user output
(empty)

Test 8

Group: 2, 5

Verdict:

input
250 250 250
**..**..****.****.*.***.***..*...

correct output
2
3
3
3
3
...

user output
(empty)

Test 9

Group: 3, 4, 5

Verdict:

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

correct output
2
2
2
2
2
...

user output
(empty)

Test 10

Group: 3, 4, 5

Verdict:

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

correct output
2
1
3
2
2
...

user output
(empty)

Test 11

Group: 3, 4, 5

Verdict:

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

correct output
3
3
3
3
3
...

user output
(empty)

Test 12

Group: 4, 5

Verdict:

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

correct output
2
2
2
2
2
...

user output
(empty)

Test 13

Group: 4, 5

Verdict:

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

correct output
3
2
2
3
2
...

user output
(empty)

Test 14

Group: 4, 5

Verdict:

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

correct output
2
3
1
2
2
...

user output
(empty)

Test 15

Group: 5

Verdict:

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

correct output
3
2
2
2
2
...

user output
(empty)

Test 16

Group: 5

Verdict:

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

correct output
2
2
2
2
2
...

user output
(empty)

Test 17

Group: 5

Verdict:

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

correct output
3
3
2
2
2
...

user output
(empty)

Test 18

Group: 5

Verdict:

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

correct output
3
3
3
3
3
...

user output
(empty)

Test 19

Group: 5

Verdict:

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

correct output
104
422
145
93
65
...

user output
(empty)

Test 20

Group: 5

Verdict:

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

correct output
57
155
38
65
98
...

user output
(empty)

Test 21

Group: 5

Verdict:

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

correct output
498
498
498
498
498
...

user output
(empty)

Test 22

Group: 1, 2, 3, 4, 5

Verdict:

input
10 1 10
*
*
.
*
...

correct output
0
1
1
0
0
...

user output
0
-1
-1
0
0
...

Feedback: Incorrect character on line 2 col 1: expected "1", got "-1"

Test 23

Group: 1, 2, 3, 4, 5

Verdict:

input
1 10 10
........*.
1 7 1 10
1 4 1 7
1 5 1 1
...

correct output
1
1
1
1
1
...

user output
1
-1
1
1
1
...

Feedback: Incorrect character on line 2 col 1: expected "1", got "-1"

Test 24

Group: 5

Verdict:

input
250 1 200000
*
.
*
.
...

correct output
1
1
1
1
1
...

user output
(empty)

Test 25

Group: 5

Verdict:

input
1 250 200000
*.*.*...*.*.**.***..**.*.*..**...

correct output
1
1
1
1
1
...

user output
(empty)

Test 26

Group: 5

Verdict:

input
250 250 200000
.................................

correct output
2
2
2
2
2
...

user output
(empty)

Test 27

Group: 5

Verdict: ACCEPTED

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

correct output
0
0
0
0
0
...

user output
0
0
0
0
0
...