| Task: | Hypyt |
| Sender: | xiaou0 |
| Submission time: | 2025-10-28 23:40:55 +0200 |
| Language: | C++ (C++17) |
| Status: | READY |
| Result: | 100 |
| group | verdict | score |
|---|---|---|
| #1 | ACCEPTED | 10 |
| #2 | ACCEPTED | 20 |
| #3 | ACCEPTED | 15 |
| #4 | ACCEPTED | 15 |
| #5 | ACCEPTED | 40 |
| test | verdict | time | group | |
|---|---|---|---|---|
| #1 | ACCEPTED | 0.00 s | 1, 2, 3, 4, 5 | details |
| #2 | ACCEPTED | 0.00 s | 1, 2, 3, 4, 5 | details |
| #3 | ACCEPTED | 0.00 s | 1, 2, 3, 4, 5 | details |
| #4 | ACCEPTED | 0.00 s | 1, 2, 3, 4, 5 | details |
| #5 | ACCEPTED | 0.00 s | 1, 2, 3, 4, 5 | details |
| #6 | ACCEPTED | 0.42 s | 2, 5 | details |
| #7 | ACCEPTED | 0.45 s | 2, 5 | details |
| #8 | ACCEPTED | 0.38 s | 2, 5 | details |
| #9 | ACCEPTED | 0.09 s | 3, 4, 5 | details |
| #10 | ACCEPTED | 0.12 s | 3, 4, 5 | details |
| #11 | ACCEPTED | 0.14 s | 3, 4, 5 | details |
| #12 | ACCEPTED | 0.12 s | 4, 5 | details |
| #13 | ACCEPTED | 0.18 s | 4, 5 | details |
| #14 | ACCEPTED | 0.21 s | 4, 5 | details |
| #15 | ACCEPTED | 0.54 s | 5 | details |
| #16 | ACCEPTED | 0.74 s | 5 | details |
| #17 | ACCEPTED | 0.76 s | 5 | details |
| #18 | ACCEPTED | 0.67 s | 5 | details |
| #19 | ACCEPTED | 0.58 s | 5 | details |
| #20 | ACCEPTED | 0.57 s | 5 | details |
| #21 | ACCEPTED | 0.54 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 | ACCEPTED | 0.23 s | 5 | details |
| #25 | ACCEPTED | 0.23 s | 5 | details |
| #26 | ACCEPTED | 0.41 s | 5 | details |
| #27 | ACCEPTED | 0.40 s | 5 | details |
Compiler report
input/code.cpp: In function 'int main()':
input/code.cpp:127:10: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
127 | scanf("%d%d%d",&n,&m,&q);
| ~~~~~^~~~~~~~~~~~~~~~~~~
input/code.cpp:152:14: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
152 | scanf("%d%d%d%d",&x1,&y1,&x2,&y2);
| ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~Code
/*ver 2.0 : virtual row nodes*/
#include <bits/stdc++.h>
using namespace std;
const int N=255;
int n,m,q;
bool grid[N][N];
bool adjrow[N][N];
bool adjcol[N][N];
struct state{
int d,first,last;
};
state dprow[N][N][N];
state dpcol[N][N][N];
const int INF=0x3f3f3f;
void floyd(){
for(int i=1;i<=n;++i)
for(int j=1;j<=n;++j){
dprow[0][i][j].last=i;
dprow[0][i][j].first=j;
if(i==j)dprow[0][i][j].d=0;
else if(adjrow[i][j]) dprow[0][i][j].d=2;
else dprow[0][i][j].d=INF;
}
for(int i=1;i<=m;++i)
for(int j=1;j<=m;++j){
dpcol[0][i][j].last=i;
dpcol[0][i][j].first=j;
if(i==j)dpcol[0][i][j].d=0;
else if(adjcol[i][j]) dpcol[0][i][j].d=2;
else dpcol[0][i][j].d=INF;
}
for(int k=1;k<=n;++k){
for(int i=1;i<=n;++i){
for(int j=1;j<=n;++j){
state bef=dprow[k-1][i][j];
state l=dprow[k-1][i][k];
state r=dprow[k-1][k][j];
if(bef.d<=l.d+r.d){
dprow[k][i][j]=bef;
}else{
dprow[k][i][j].last=r.last;
dprow[k][i][j].first=l.first;
dprow[k][i][j].d=l.d+r.d;
}
}
}
}
for(int k=1;k<=m;++k){
for(int i=1;i<=m;++i){
for(int j=1;j<=m;++j){
state bef=dpcol[k-1][i][j];
state l=dpcol[k-1][i][k];
state r=dpcol[k-1][k][j];
if(bef.d<=l.d+r.d){
dpcol[k][i][j]=bef;
}else{
dpcol[k][i][j].last=r.last;
dpcol[k][i][j].first=l.first;
dpcol[k][i][j].d=l.d+r.d;
}
}
}
}
}
void debug(){
for(int i=1;i<=n;++i){
for(int j=1;j<=n;++j)
cout<<(dprow[n][i][j].d>=0x1f1f1f?-1:dprow[n][i][j].d)<<" ";
cout<<endl;
}
cout<<"---"<<endl;
for(int i=1;i<=n;++i){
for(int j=1;j<=n;++j)
cout<<dprow[n][i][j].first<<" ";
cout<<endl;
}
cout<<"---"<<endl;
for(int i=1;i<=n;++i){
for(int j=1;j<=n;++j)
cout<<dprow[n][i][j].last<<" ";
cout<<endl;
}
}
inline int searchrow(int x1,int y1,int x2,int y2){
state route=dprow[n][x1][x2];
int res=route.d;
int first=route.first;
int last=route.last;
if(grid[first][y1]&&grid[x1][y1])--res;
if(!(grid[last][y2]&&grid[x2][y2]))++res;
return res;
}
inline int searchcol(int x1,int y1,int x2,int y2){
state route=dpcol[m][y1][y2];
int res=route.d;
int first=route.first;
int last=route.last;
if(grid[x1][y1]&&grid[x1][first])--res;
if(!(grid[x2][last]&&grid[x2][y2]))++res;
return res;
}
int query(int x1,int y1,int x2,int y2){
int res=searchrow(x1,y1,x2,y2);
for(int i=1;i<=n;++i){
if(i==x2||!grid[i][y2])continue;
res=min(res,searchrow(x1,y2,i,y2)+1);
}
res=min(res,searchcol(x1,y1,x2,y2));
for(int i=1;i<=m;++i){
if(i==y2||!grid[x2][i])continue;
res=min(res,searchcol(x1,y1,x2,i)+1);
}
return res;
}
int main(){
// freopen("example.txt","r",stdin);
// freopen("exampleout.txt","w",stdout);
scanf("%d%d%d",&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)if(grid[i][k]&&grid[j][k]){
adjrow[i][j]=true;
adjrow[j][i]=true;
}
}
for(int i=1;i<=m;++i)//Init the adjacency matrix O(n^3)
for(int j=1;j<i;++j){
for(int k=1;k<=n;++k)if(grid[k][i]&&grid[k][j]){
adjcol[i][j]=true;
adjcol[j][i]=true;
}
}
floyd();
// debug();
//Basic Node +1 jump = Row Node (forall).
for(int i=1;i<=q;++i){//Queries
int x1,y1,x2,y2;
scanf("%d%d%d%d",&x1,&y1,&x2,&y2);
if(x1==x2&&y1==y2){
printf("0\n");
continue;
}else if(x1==x2||y1==y2){
printf("1\n");
continue;
}else if(grid[x1][y2]||grid[x2][y1]){
printf("2\n");
continue;
}else{
int res=query(x1,y1,x2,y2);
printf("%d\n",res>=INF?-1:res);
}
}
return 0;
}
// 2*10^5*500Test 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: ACCEPTED
| input |
|---|
| 10 10 10 ***.*.**** ********** *.******** .*.***.**. ... |
| correct output |
|---|
| 3 4 2 3 4 ... |
| user output |
|---|
| 3 4 2 3 4 ... |
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: ACCEPTED
| input |
|---|
| 250 250 250 .*...*.....*******..**...*....... |
| correct output |
|---|
| 2 3 3 2 2 ... |
| user output |
|---|
| 2 3 3 2 2 ... |
Test 7
Group: 2, 5
Verdict: ACCEPTED
| input |
|---|
| 250 250 250 ...*......**.**.*.*..**..*..**... |
| correct output |
|---|
| 2 2 2 2 3 ... |
| user output |
|---|
| 2 2 2 2 3 ... |
Test 8
Group: 2, 5
Verdict: ACCEPTED
| input |
|---|
| 250 250 250 **..**..****.****.*.***.***..*... |
| correct output |
|---|
| 2 3 3 3 3 ... |
| user output |
|---|
| 2 3 3 3 3 ... |
Test 9
Group: 3, 4, 5
Verdict: ACCEPTED
| input |
|---|
| 40 40 200000 ...*.**.*..*.............*.*..... |
| correct output |
|---|
| 2 2 2 2 2 ... |
| user output |
|---|
| 2 2 2 2 2 ... |
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: ACCEPTED
| input |
|---|
| 40 40 200000 .*.*.**.*****.***.*.****.**.**... |
| correct output |
|---|
| 3 3 3 3 3 ... |
| user output |
|---|
| 3 3 3 3 3 ... |
Test 12
Group: 4, 5
Verdict: ACCEPTED
| input |
|---|
| 80 80 200000 *....**.***..****...*.....*...... |
| correct output |
|---|
| 2 2 2 2 2 ... |
| user output |
|---|
| 2 2 2 2 2 ... |
Test 13
Group: 4, 5
Verdict: ACCEPTED
| input |
|---|
| 80 80 200000 .***.*..*.***..*****....**...*... |
| correct output |
|---|
| 3 2 2 3 2 ... |
| user output |
|---|
| 3 2 2 3 2 ... |
Test 14
Group: 4, 5
Verdict: ACCEPTED
| input |
|---|
| 80 80 200000 *******.*****.*..*..****...***... |
| correct output |
|---|
| 2 3 1 2 2 ... |
| user output |
|---|
| 2 3 1 2 2 ... |
Test 15
Group: 5
Verdict: ACCEPTED
| input |
|---|
| 250 250 200000 *....*..*..*..**..*.........**... |
| correct output |
|---|
| 3 2 2 2 2 ... |
| user output |
|---|
| 3 2 2 2 2 ... |
Test 16
Group: 5
Verdict: ACCEPTED
| input |
|---|
| 250 250 200000 ..*....*..*......*.**.*.*..***... |
| correct output |
|---|
| 2 2 2 2 2 ... |
| user output |
|---|
| 2 2 2 2 2 ... |
Test 17
Group: 5
Verdict: ACCEPTED
| input |
|---|
| 250 250 200000 *..*.*****.*********.****.****... |
| correct output |
|---|
| 3 3 2 2 2 ... |
| user output |
|---|
| 3 3 2 2 2 ... |
Test 18
Group: 5
Verdict: ACCEPTED
| input |
|---|
| 250 250 200000 *********.**********.******.**... |
| correct output |
|---|
| 3 3 3 3 3 ... |
| user output |
|---|
| 3 3 3 3 3 ... |
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: ACCEPTED
| input |
|---|
| 250 250 200000 ..****************************... |
| correct output |
|---|
| 57 155 38 65 98 ... |
| user output |
|---|
| 57 155 38 65 98 ... |
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: ACCEPTED
| input |
|---|
| 250 250 200000 ................................. |
| correct output |
|---|
| 2 2 2 2 2 ... |
| user output |
|---|
| 2 2 2 2 2 ... |
Test 27
Group: 5
Verdict: ACCEPTED
| input |
|---|
| 250 250 200000 ******************************... |
| correct output |
|---|
| 0 0 0 0 0 ... |
| user output |
|---|
| 0 0 0 0 0 ... |
