| Task: | Hypyt |
| Sender: | viiviP |
| Submission time: | 2025-11-09 17:19:10 +0200 |
| Language: | C++ (C++17) |
| Status: | READY |
| Result: | 0 |
| group | verdict | score |
|---|---|---|
| #1 | WRONG ANSWER | 0 |
| #2 | WRONG ANSWER | 0 |
| #3 | WRONG ANSWER | 0 |
| #4 | WRONG ANSWER | 0 |
| #5 | WRONG ANSWER | 0 |
| test | verdict | time | group | |
|---|---|---|---|---|
| #1 | ACCEPTED | 0.00 s | 1, 2, 3, 4, 5 | details |
| #2 | WRONG ANSWER | 0.00 s | 1, 2, 3, 4, 5 | details |
| #3 | WRONG ANSWER | 0.00 s | 1, 2, 3, 4, 5 | details |
| #4 | WRONG ANSWER | 0.00 s | 1, 2, 3, 4, 5 | details |
| #5 | ACCEPTED | 0.00 s | 1, 2, 3, 4, 5 | details |
| #6 | RUNTIME ERROR | 0.40 s | 2, 5 | details |
| #7 | RUNTIME ERROR | 0.40 s | 2, 5 | details |
| #8 | RUNTIME ERROR | 0.40 s | 2, 5 | details |
| #9 | TIME LIMIT EXCEEDED | -- | 3, 4, 5 | details |
| #10 | TIME LIMIT EXCEEDED | -- | 3, 4, 5 | details |
| #11 | WRONG ANSWER | 0.99 s | 3, 4, 5 | details |
| #12 | TIME LIMIT EXCEEDED | -- | 4, 5 | details |
| #13 | TIME LIMIT EXCEEDED | -- | 4, 5 | details |
| #14 | TIME LIMIT EXCEEDED | -- | 4, 5 | details |
| #15 | RUNTIME ERROR | 0.40 s | 5 | details |
| #16 | RUNTIME ERROR | 0.40 s | 5 | details |
| #17 | RUNTIME ERROR | 0.40 s | 5 | details |
| #18 | RUNTIME ERROR | 0.40 s | 5 | details |
| #19 | RUNTIME ERROR | 0.40 s | 5 | details |
| #20 | RUNTIME ERROR | 0.40 s | 5 | details |
| #21 | RUNTIME ERROR | 0.40 s | 5 | details |
| #22 | ACCEPTED | 0.00 s | 1, 2, 3, 4, 5 | details |
| #23 | ACCEPTED | 0.00 s | 1, 2, 3, 4, 5 | details |
| #24 | TIME LIMIT EXCEEDED | -- | 5 | details |
| #25 | ACCEPTED | 0.11 s | 5 | details |
| #26 | RUNTIME ERROR | 0.40 s | 5 | details |
| #27 | RUNTIME ERROR | 0.40 s | 5 | details |
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>>> row(n+1);
vector<vector<pair<int,int>>> col(m+1);
vector<vector<vector<vector<int>>>> mem(n+1, vector<vector<vector<int>>> (m+1, vector<vector<int>>(n+1, vector<int>(m+1,-1))));
//vector<vector<map<pair<int,int>, int>>> y(n, vector<map<pair<int,int>, int>>(m)); //y[i][j][{y2,x2}] = 0; //yhteydet y
for (int i =1; i<=n;i++) {
string s;
cin>>s;
for (int j = 1; j<=m;j++) {
r[i][j] = s[j-1];
if (r[i][j] == '.') {
row[i].push_back({i,j});
col[j].push_back({i,j});
}
}
}
//cout << y[0][0][{0,2}] << " ";
//y[0][0][{0,2}] = 1;
//cout << y[0][0][{0,2}] << " ";
for (int i = 0;i<q;i++) {
int y1, x1, y2, x2;
cin >>y1>>x1>>y2>>x2;
queue<vector<int>> q;
vector<vector<int>> z(n+1, vector<int>(m+1));
if (y1 == y2 && x1 == x2) {
cout <<"0\n";
} else if (y1 == y2 || x1 == x2) {
cout <<"1\n";
} else {
q.push({y1, x1, 0, 0});
//z[y1][x2] = 1;
bool f = false;
while (!q.empty()) {
int y = q.front()[0];
int x = q.front()[1];
int e = q.front()[2];
int s = q.front()[3];
if (mem[y][x][y2][x2] != -1) {
//cout <<"käytetaan mem\n";
cout <<mem[y][x][y2][x2] + e<<"\n";
f = true;
break;
}
q.pop();
if (y == y2 && x == x2) {
//cout << "maalissa: "<<e<<"\n";
cout <<e<<"\n";
f = true;
break;
}
z[y][x] = 1;
if (s != 1) {
//cout <<"rivilla " <<y<<"\n";
for (auto p : row[y]) {
if (z[p.first][p.second] != 1) {
q.push({p.first, p.second, e+1, 1});
mem[y1][x1][p.first][p.second] = e+1;
mem[p.first][p.second][y1][x1] = e+1;
//cout <<"lisattiin " <<p.first<<" "<<p.second<<"\n";
}
}
}
if (s != 2) {
//cout <<"saraketta " <<x<<"\n";
for (auto p : col[x]) {
if (z[p.first][p.second] != 1) {
q.push({p.first, p.second, e+1, 2});
mem[y1][x1][p.first][p.second] = e+1;
mem[p.first][p.second][y1][x1] = e+1;
//cout <<"lisattiin " <<p.first<<" "<<p.second<<"\n";
}
}
}
}
if (f == false) {
cout << "-1\n";
} //else {
// cout <<"mem "<<mem[y1][x1][y2][x2]<<"\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: WRONG ANSWER
| input |
|---|
| 10 10 10 .......... .....*.... ........*. *.*....*.. ... |
| correct output |
|---|
| 1 2 1 2 2 ... |
| user output |
|---|
| 1 2 1 3 5 ... |
Feedback: Incorrect character on line 4 col 1: expected "2", got "3"
Test 3
Group: 1, 2, 3, 4, 5
Verdict: WRONG ANSWER
| input |
|---|
| 10 10 10 *...***.** *****.*... **..**.**. ..**.**.*. ... |
| correct output |
|---|
| 1 2 2 1 2 ... |
| user output |
|---|
| 1 2 4 1 3 ... |
Feedback: Incorrect character on line 3 col 1: expected "2", got "4"
Test 4
Group: 1, 2, 3, 4, 5
Verdict: WRONG ANSWER
| input |
|---|
| 10 10 10 ***.*.**** ********** *.******** .*.***.**. ... |
| correct output |
|---|
| 3 4 2 3 4 ... |
| user output |
|---|
| 3 4 5 4 5 ... |
Feedback: Incorrect character on line 3 col 1: expected "2", 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: RUNTIME ERROR
| input |
|---|
| 250 250 250 .*...*.....*******..**...*....... |
| correct output |
|---|
| 2 3 3 2 2 ... |
| user output |
|---|
| (empty) |
Test 7
Group: 2, 5
Verdict: RUNTIME ERROR
| input |
|---|
| 250 250 250 ...*......**.**.*.*..**..*..**... |
| correct output |
|---|
| 2 2 2 2 3 ... |
| user output |
|---|
| (empty) |
Test 8
Group: 2, 5
Verdict: RUNTIME ERROR
| input |
|---|
| 250 250 250 **..**..****.****.*.***.***..*... |
| correct output |
|---|
| 2 3 3 3 3 ... |
| user output |
|---|
| (empty) |
Test 9
Group: 3, 4, 5
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 40 40 200000 ...*.**.*..*.............*.*..... |
| correct output |
|---|
| 2 2 2 2 2 ... |
| user output |
|---|
| (empty) |
Test 10
Group: 3, 4, 5
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 40 40 200000 **.**..*.*.*.******....****.*.... |
| correct output |
|---|
| 2 1 3 2 2 ... |
| user output |
|---|
| (empty) |
Test 11
Group: 3, 4, 5
Verdict: WRONG ANSWER
| input |
|---|
| 40 40 200000 .*.*.**.*****.***.*.****.**.**... |
| correct output |
|---|
| 3 3 3 3 3 ... |
| user output |
|---|
| 3 6 4 5 5 ... |
Feedback: Incorrect character on line 2 col 1: expected "3", got "6"
Test 12
Group: 4, 5
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 80 80 200000 *....**.***..****...*.....*...... |
| correct output |
|---|
| 2 2 2 2 2 ... |
| user output |
|---|
| (empty) |
Test 13
Group: 4, 5
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 80 80 200000 .***.*..*.***..*****....**...*... |
| correct output |
|---|
| 3 2 2 3 2 ... |
| user output |
|---|
| (empty) |
Test 14
Group: 4, 5
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 80 80 200000 *******.*****.*..*..****...***... |
| correct output |
|---|
| 2 3 1 2 2 ... |
| user output |
|---|
| (empty) |
Test 15
Group: 5
Verdict: RUNTIME ERROR
| input |
|---|
| 250 250 200000 *....*..*..*..**..*.........**... |
| correct output |
|---|
| 3 2 2 2 2 ... |
| user output |
|---|
| (empty) |
Test 16
Group: 5
Verdict: RUNTIME ERROR
| input |
|---|
| 250 250 200000 ..*....*..*......*.**.*.*..***... |
| correct output |
|---|
| 2 2 2 2 2 ... |
| user output |
|---|
| (empty) |
Test 17
Group: 5
Verdict: RUNTIME ERROR
| input |
|---|
| 250 250 200000 *..*.*****.*********.****.****... |
| correct output |
|---|
| 3 3 2 2 2 ... |
| user output |
|---|
| (empty) |
Test 18
Group: 5
Verdict: RUNTIME ERROR
| input |
|---|
| 250 250 200000 *********.**********.******.**... |
| correct output |
|---|
| 3 3 3 3 3 ... |
| user output |
|---|
| (empty) |
Test 19
Group: 5
Verdict: RUNTIME ERROR
| input |
|---|
| 250 250 200000 .*****************************... |
| correct output |
|---|
| 104 422 145 93 65 ... |
| user output |
|---|
| (empty) |
Test 20
Group: 5
Verdict: RUNTIME ERROR
| input |
|---|
| 250 250 200000 ..****************************... |
| correct output |
|---|
| 57 155 38 65 98 ... |
| user output |
|---|
| (empty) |
Test 21
Group: 5
Verdict: RUNTIME ERROR
| input |
|---|
| 250 250 200000 .*****************************... |
| correct output |
|---|
| 498 498 498 498 498 ... |
| user output |
|---|
| (empty) |
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: TIME LIMIT EXCEEDED
| input |
|---|
| 250 1 200000 * . * . ... |
| correct output |
|---|
| 1 1 1 1 1 ... |
| user output |
|---|
| (empty) |
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: RUNTIME ERROR
| input |
|---|
| 250 250 200000 ................................. |
| correct output |
|---|
| 2 2 2 2 2 ... |
| user output |
|---|
| (empty) |
Test 27
Group: 5
Verdict: RUNTIME ERROR
| input |
|---|
| 250 250 200000 ******************************... |
| correct output |
|---|
| 0 0 0 0 0 ... |
| user output |
|---|
| (empty) |
