Submission details
Task:Hypyt
Sender:viiviP
Submission time:2025-11-09 18:18:31 +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
#2ACCEPTED0.00 s1, 2, 3, 4, 5details
#3ACCEPTED0.00 s1, 2, 3, 4, 5details
#40.00 s1, 2, 3, 4, 5details
#5ACCEPTED0.00 s1, 2, 3, 4, 5details
#60.72 s2, 5details
#70.90 s2, 5details
#80.92 s2, 5details
#9--3, 4, 5details
#10ACCEPTED0.97 s3, 4, 5details
#110.65 s3, 4, 5details
#120.91 s4, 5details
#13--4, 5details
#140.81 s4, 5details
#150.72 s5details
#160.88 s5details
#170.92 s5details
#18--5details
#19ACCEPTED0.58 s5details
#20--5details
#21ACCEPTED0.54 s5details
#22ACCEPTED0.00 s1, 2, 3, 4, 5details
#23ACCEPTED0.00 s1, 2, 3, 4, 5details
#24ACCEPTED0.49 s5details
#25ACCEPTED0.44 s5details
#260.73 s5details
#27ACCEPTED0.52 s5details

Compiler report

input/code.cpp: In function 'int main()':
input/code.cpp:80:20: warning: suggest explicit braces to avoid ambiguous 'else' [-Wdangling-else]
   80 |                 if (j[2]>= 0 && j[2]<1e8)
      |                    ^
input/code.cpp:75:17: warning: unused variable 'ans' [-Wunused-variable]
   75 |             int ans = e[y1][y2];
      |                 ^~~

Code

#include <iostream>
#include <bits/stdc++.h>
typedef long long ll;
using namespace std;


int n, m, q;
int main() {
    //ios_base::sync_with_stdio(0);
    //cin.tie(0);
    //cout.tie(0);
    cin >> n>>m>>q;
    vector<vector<char>> r(n+1, vector<char>(m+1));
    vector<vector<pair<int, int>>>v(n+1); 
    vector<vector<int>> e(n+1, vector<int>(n+1,1e9)); 

    vector<vector<vector<vector<int>>>> p(n+1, vector<vector<vector<int>>> (n+1));
    

    for (int i =1; i<=n;i++) {
        string s;
        cin>>s;
        for (int j = 1; j<=m;j++) {
            r[i][j] = s[j-1];

        }
    }
    //vierusmatriisi
    for (int i = 1; i<=n;i++) {
        e[i][i] = 0;
        for (int j = 1;j<=m;j++) {
            if (r[i][j] == '.') {
                for (int k = 1; k<=n;k++) { //y-akseli
                    if (r[k][j] == '.'&& k != i) { //
                        v[i].push_back({j, k});
                        e[i][k] = 2; 
                        p[i][k].push_back({j, j, 2});
                    }    
                }
            }
        }
    }

    //FLOYD-WARSHALL
    for (int k = 1;k<=n;k++) { //välisolmu
        //cout << "e: 3 4 "<< e[3][4]<<"\n";
        for (int i = 1;i<=n;i++) { //alkusolmu
            for (int j = 1;j<=n;j++) { //loppusolmu
                if (e[i][j] +2>= e[i][k] + e[k][j]) { //yksi hyppy = 2
                    //e[i][j] = min(e[i][k] + e[k][j], e[i][j]);
                    e[i][j] =e[i][k] + e[k][j];

                    for (auto d : p[i][k]) {
                        for (auto f : p[k][j]) {
                            p[i][j].push_back({d[0], f[1], e[i][j]});
                        }
                    }
                }
            }
        }
    }

    for (int i = 0;i<q;i++) {
        int y1, x1, y2,x2;
        cin >>y1>>x1>>y2>>x2;

        if (e[y1][y2] >= 1e9 || r[y1][x1] == '*' || r[y2][x2] == '*') {
            cout <<"-1\n";
        } else if (y1 == y2 && x1 == x2) {
            cout <<"0\n";
        } else if (y1 == y2 || x1 == x2) {
            cout <<"1\n";
        } 
        else {
            int ans = e[y1][y2];
            
            int lisa = 0;
            int paras = 1e9;
            for (auto j : p[y1][y2]) {
                if (j[2]>= 0 && j[2]<1e8)
                if (j[0] == x1 && j[1] == x2) { 
                    lisa = -1;
                    
                } else if (j[0]== x1|| j[1] == x2) {
                    lisa = 0;
                } else {
                    lisa =1;
                }
                
                paras = min(paras, j[2]+lisa);

            } 

            cout <<paras <<"\n";
        }
    }
}

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: ACCEPTED

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

correct output
1
2
1
2
2
...

user output
1
2
1
2
2
...

Test 3

Group: 1, 2, 3, 4, 5

Verdict: ACCEPTED

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

correct output
1
2
2
1
2
...

user output
1
2
2
1
2
...

Test 4

Group: 1, 2, 3, 4, 5

Verdict:

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

correct output
3
4
2
3
4
...

user output
3
5
2
3
5
...

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

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: ACCEPTED

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

correct output
2
1
3
2
2
...

user output
2
1
3
2
2
...

Test 11

Group: 3, 4, 5

Verdict:

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

correct output
3
3
3
3
3
...

user output
3
3
3
3
4
...

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

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
2
3
1
2
2
...

Feedback: Incorrect character on line 147 col 1: expected "3", got "5"

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: ACCEPTED

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

correct output
104
422
145
93
65
...

user output
104
422
145
93
65
...

Test 20

Group: 5

Verdict:

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

correct output
57
155
38
65
98
...

user output
(empty)

Test 21

Group: 5

Verdict: ACCEPTED

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

correct output
498
498
498
498
498
...

user output
498
498
498
498
498
...

Test 22

Group: 1, 2, 3, 4, 5

Verdict: ACCEPTED

input
10 1 10
*
*
.
*
...

correct output
0
1
1
0
0
...

user output
0
1
1
0
0
...

Test 23

Group: 1, 2, 3, 4, 5

Verdict: ACCEPTED

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
...

Test 24

Group: 5

Verdict: ACCEPTED

input
250 1 200000
*
.
*
.
...

correct output
1
1
1
1
1
...

user output
1
1
1
1
1
...

Test 25

Group: 5

Verdict: ACCEPTED

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

correct output
1
1
1
1
1
...

user output
1
1
1
1
1
...

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
...