| Task: | Hypyt |
| Sender: | xiaou0 |
| Submission time: | 2025-10-27 13:59:49 +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.05 s | 1, 2, 3, 4, 5 | details |
| #2 | WRONG ANSWER | 0.05 s | 1, 2, 3, 4, 5 | details |
| #3 | WRONG ANSWER | 0.05 s | 1, 2, 3, 4, 5 | details |
| #4 | WRONG ANSWER | 0.05 s | 1, 2, 3, 4, 5 | details |
| #5 | ACCEPTED | 0.05 s | 1, 2, 3, 4, 5 | details |
| #6 | WRONG ANSWER | 0.09 s | 2, 5 | details |
| #7 | WRONG ANSWER | 0.09 s | 2, 5 | details |
| #8 | WRONG ANSWER | 0.09 s | 2, 5 | details |
| #9 | WRONG ANSWER | 0.49 s | 3, 4, 5 | details |
| #10 | WRONG ANSWER | 0.50 s | 3, 4, 5 | details |
| #11 | WRONG ANSWER | 0.50 s | 3, 4, 5 | details |
| #12 | WRONG ANSWER | 0.50 s | 4, 5 | details |
| #13 | WRONG ANSWER | 0.50 s | 4, 5 | details |
| #14 | WRONG ANSWER | 0.51 s | 4, 5 | details |
| #15 | WRONG ANSWER | 0.56 s | 5 | details |
| #16 | WRONG ANSWER | 0.56 s | 5 | details |
| #17 | WRONG ANSWER | 0.56 s | 5 | details |
| #18 | WRONG ANSWER | 0.57 s | 5 | details |
| #19 | WRONG ANSWER | 0.61 s | 5 | details |
| #20 | WRONG ANSWER | 0.56 s | 5 | details |
| #21 | WRONG ANSWER | 0.56 s | 5 | details |
| #22 | ACCEPTED | 0.05 s | 1, 2, 3, 4, 5 | details |
| #23 | ACCEPTED | 0.05 s | 1, 2, 3, 4, 5 | details |
| #24 | ACCEPTED | 0.53 s | 5 | details |
| #25 | ACCEPTED | 0.52 s | 5 | details |
| #26 | WRONG ANSWER | 0.56 s | 5 | details |
| #27 | ACCEPTED | 0.57 s | 5 | details |
Code
#include <bits/stdc++.h>
using namespace std;
const int N=255;
int n,m,q;
bool grid[N][N];// *=0, .=1
/*
Only consider the connection between all rows and columns
For code convenience, using the adjacency matrix :/ (Not that slow)
*/
bool adj[N][N];
int dp[N][N][N];
void debug(){
for(int i=1;i<=n;++i){
for(int j=1;j<=n;++j)
cout<<dp[n][i][j];
cout<<endl;
}
}
void floyd(){
memset(dp,0x3f3f3f,sizeof(dp));
for(int i=1;i<=n;++i)
for(int j=1;j<=n;++j){
if(i==j)dp[0][i][j]=0;
else if(adj[i][j]) dp[0][i][j]=1;
}
for(int k=1;k<=n;k++){
for(int i=1;i<=n;++i){
for(int j=1;j<=n;++j){
dp[k][i][j]=min(dp[k-1][i][j],dp[k-1][i][k]+dp[k-1][k][j]);
}
}
}
}
int main(){
cin>>n>>m>>q;
char tmpchar;
for(int i=1;i<=n;++i)
for(int j=1;j<=m;++j)
{cin>>tmpchar;
grid[i][j]=(tmpchar=='.'?1:0);}
for(int i=1;i<=n;++i)//Init the adjacency matrix O(n^3)
for(int j=1;j<i;++j){
for(int k=1;k<=m;++k)
adj[i][j]|=(grid[i][k]&&grid[j][k]);
adj[j][i]=adj[i][j];
}
floyd();//Floyd algo. O(n^3)
// debug();
while(q--){//Queries
int x1,y1,x2,y2;
cin>>x1>>y1>>x2>>y2;
if(x1==x2&&y1==y2){
cout<<0<<endl;
continue;
}
else if(x1==x2||y1==y2){
cout<<1<<endl;
continue;
}
if(dp[n][x1][x2]>250*250)cout<<-1<<endl;
else cout<<dp[n][x1][x2]*2+1<<endl;
}
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: WRONG ANSWER
| input |
|---|
| 10 10 10 .......... .....*.... ........*. *.*....*.. ... |
| correct output |
|---|
| 1 2 1 2 2 ... |
| user output |
|---|
| 1 3 1 3 3 ... |
Feedback: Incorrect character on line 2 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 3 3 1 3 ... |
Feedback: Incorrect character on line 2 col 1: expected "2", got "3"
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 5 3 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: WRONG ANSWER
| input |
|---|
| 250 250 250 .*...*.....*******..**...*....... |
| correct output |
|---|
| 2 3 3 2 2 ... |
| user output |
|---|
| 3 3 3 3 3 ... |
Feedback: Incorrect character on line 1 col 1: expected "2", got "3"
Test 7
Group: 2, 5
Verdict: WRONG ANSWER
| input |
|---|
| 250 250 250 ...*......**.**.*.*..**..*..**... |
| correct output |
|---|
| 2 2 2 2 3 ... |
| user output |
|---|
| 3 3 3 3 3 ... |
Feedback: Incorrect character on line 1 col 1: expected "2", got "3"
Test 8
Group: 2, 5
Verdict: WRONG ANSWER
| input |
|---|
| 250 250 250 **..**..****.****.*.***.***..*... |
| correct output |
|---|
| 2 3 3 3 3 ... |
| user output |
|---|
| 3 3 3 3 3 ... |
Feedback: Incorrect character on line 1 col 1: expected "2", got "3"
Test 9
Group: 3, 4, 5
Verdict: WRONG ANSWER
| input |
|---|
| 40 40 200000 ...*.**.*..*.............*.*..... |
| correct output |
|---|
| 2 2 2 2 2 ... |
| user output |
|---|
| 3 3 3 3 3 ... |
Feedback: Incorrect character on line 1 col 1: expected "2", got "3"
Test 10
Group: 3, 4, 5
Verdict: WRONG ANSWER
| input |
|---|
| 40 40 200000 **.**..*.*.*.******....****.*.... |
| correct output |
|---|
| 2 1 3 2 2 ... |
| user output |
|---|
| 3 1 3 3 3 ... |
Feedback: Incorrect character on line 1 col 1: expected "2", got "3"
Test 11
Group: 3, 4, 5
Verdict: WRONG ANSWER
| input |
|---|
| 40 40 200000 .*.*.**.*****.***.*.****.**.**... |
| correct output |
|---|
| 3 3 3 3 3 ... |
| user output |
|---|
| 3 3 3 3 5 ... |
Feedback: Incorrect character on line 5 col 1: expected "3", got "5"
Test 12
Group: 4, 5
Verdict: WRONG ANSWER
| input |
|---|
| 80 80 200000 *....**.***..****...*.....*...... |
| correct output |
|---|
| 2 2 2 2 2 ... |
| user output |
|---|
| 3 3 3 3 3 ... |
Feedback: Incorrect character on line 1 col 1: expected "2", got "3"
Test 13
Group: 4, 5
Verdict: WRONG ANSWER
| input |
|---|
| 80 80 200000 .***.*..*.***..*****....**...*... |
| correct output |
|---|
| 3 2 2 3 2 ... |
| user output |
|---|
| 3 3 3 3 3 ... |
Feedback: Incorrect character on line 2 col 1: expected "2", got "3"
Test 14
Group: 4, 5
Verdict: WRONG ANSWER
| input |
|---|
| 80 80 200000 *******.*****.*..*..****...***... |
| correct output |
|---|
| 2 3 1 2 2 ... |
| user output |
|---|
| 3 3 1 3 3 ... |
Feedback: Incorrect character on line 1 col 1: expected "2", got "3"
Test 15
Group: 5
Verdict: WRONG ANSWER
| input |
|---|
| 250 250 200000 *....*..*..*..**..*.........**... |
| correct output |
|---|
| 3 2 2 2 2 ... |
| user output |
|---|
| 3 3 3 3 3 ... |
Feedback: Incorrect character on line 2 col 1: expected "2", got "3"
Test 16
Group: 5
Verdict: WRONG ANSWER
| input |
|---|
| 250 250 200000 ..*....*..*......*.**.*.*..***... |
| correct output |
|---|
| 2 2 2 2 2 ... |
| user output |
|---|
| 3 3 3 3 3 ... |
Feedback: Incorrect character on line 1 col 1: expected "2", got "3"
Test 17
Group: 5
Verdict: WRONG ANSWER
| input |
|---|
| 250 250 200000 *..*.*****.*********.****.****... |
| correct output |
|---|
| 3 3 2 2 2 ... |
| user output |
|---|
| 3 3 3 3 3 ... |
Feedback: Incorrect character on line 3 col 1: expected "2", got "3"
Test 18
Group: 5
Verdict: WRONG ANSWER
| input |
|---|
| 250 250 200000 *********.**********.******.**... |
| correct output |
|---|
| 3 3 3 3 3 ... |
| user output |
|---|
| 3 3 3 3 3 ... |
Feedback: Incorrect character on line 8 col 1: expected "2", got "3"
Test 19
Group: 5
Verdict: WRONG ANSWER
| input |
|---|
| 250 250 200000 .*****************************... |
| correct output |
|---|
| 104 422 145 93 65 ... |
| user output |
|---|
| 105 423 147 93 67 ... |
Feedback: Incorrect character on line 1 col 3: expected "104", got "105"
Test 20
Group: 5
Verdict: WRONG ANSWER
| input |
|---|
| 250 250 200000 ..****************************... |
| correct output |
|---|
| 57 155 38 65 98 ... |
| user output |
|---|
| 57 157 39 67 99 ... |
Feedback: Incorrect character on line 2 col 3: expected "155", got "157"
Test 21
Group: 5
Verdict: WRONG ANSWER
| input |
|---|
| 250 250 200000 .*****************************... |
| correct output |
|---|
| 498 498 498 498 498 ... |
| user output |
|---|
| 499 499 499 499 499 ... |
Feedback: Incorrect character on line 1 col 3: expected "498", got "499"
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: WRONG ANSWER
| input |
|---|
| 250 250 200000 ................................. |
| correct output |
|---|
| 2 2 2 2 2 ... |
| user output |
|---|
| 3 3 3 3 3 ... |
Feedback: Incorrect character on line 1 col 1: expected "2", got "3"
Test 27
Group: 5
Verdict: ACCEPTED
| input |
|---|
| 250 250 200000 ******************************... |
| correct output |
|---|
| 0 0 0 0 0 ... |
| user output |
|---|
| 0 0 0 0 0 ... |
