#include <bits/stdc++.h>
#include "wombats.h"
using namespace std;
int r,c,h[5001][201],v[5001][201];
int dp[201][201][201];
bool subt2;
bool subt3;
void init(int R,int C,int H[5000][200],int V[5000][200])
{
r=R;
c=C;
for(int i=0; i<R; i++)
{
for(int j=0; j<C; j++)
{
h[i][j]=H[i][j];
v[i][j]=V[i][j];
}
}
if(r<=100&&c<=100)
subt3=1;
else subt2=1;
if(subt2)
{
//cout<<r<<" "<<c<<endl;
for(int i=0; i<r; i++)
{
for(int j=0; j<c; j++)
{
for(int k=0; k<c; k++)
{
dp[i][j][k]=1e9;
}
dp[0][j][j]=0;
}
}
for(int k=0; k<c; k++)
for(int i=0; i<r; i++)
{
for(int j=c-1; j>=0; j--)
{
//cout<<dp[i][j][k]<<endl;
if(i>0)dp[i][j][k]=min(dp[i][j][k],dp[i-1][j][k]+v[i-1][j]);
if(j<c-1)dp[i][j][k]=min(dp[i][j][k],dp[i][j+1][k]+h[i][j]);
}
for(int j=0; j<c; j++)
{
//cout<<dp[i][j][k]<<endl;
if(i>0)dp[i][j][k]=min(dp[i][j][k],dp[i-1][j][k]+v[i-1][j]);
if(j>0)dp[i][j][k]=min(dp[i][j][k],dp[i][j-1][k]+h[i][j-1]);
//cout<<i<<" "<<j<<" "<<k<<" "<<dp[i][j][k]<<endl;
}
}
}
}
void changeH(int x,int y,int w)
{
h[x][y]=w;
}
void changeV(int x,int y,int w)
{
v[x][y]=w;
}
int escape(int x,int y)
{
if(subt2)return dp[r-1][y][x];
if(subt3)
{
//cout<<x<<" --- "<<y<<endl;
int k=x;
for(int i=0; i<r; i++)
{
for(int j=0; j<c; j++)
{
dp[i][j][k]=1e9;
}
}
dp[0][k][k]=0;
for(int i=0; i<r; i++)
{
for(int j=c-1; j>=0; j--)
{
//cout<<dp[i][j][k]<<endl;
if(i>0)dp[i][j][k]=min(dp[i][j][k],dp[i-1][j][k]+v[i-1][j]);
if(j<c-1)dp[i][j][k]=min(dp[i][j][k],dp[i][j+1][k]+h[i][j]);
}
for(int j=0; j<c; j++)
{
//cout<<dp[i][j][k]<<endl;
if(i>0)dp[i][j][k]=min(dp[i][j][k],dp[i-1][j][k]+v[i-1][j]);
if(j>0)dp[i][j][k]=min(dp[i][j][k],dp[i][j-1][k]+h[i][j-1]);
//cout<<i<<" "<<j<<" "<<k<<" "<<dp[i][j][k]<<endl;
}
}
return dp[r-1][y][x];
}
}
Compilation message
grader.c: In function 'int main()':
grader.c:15:6: warning: variable 'res' set but not used [-Wunused-but-set-variable]
15 | int res;
| ^~~
wombats.cpp: In function 'int escape(int, int)':
wombats.cpp:106:1: warning: control reaches end of non-void function [-Wreturn-type]
106 | }
| ^
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
45 ms |
88452 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
4440 KB |
Output is correct |
2 |
Correct |
1 ms |
4444 KB |
Output is correct |
3 |
Correct |
1 ms |
4444 KB |
Output is correct |
4 |
Correct |
3 ms |
10588 KB |
Output is correct |
5 |
Correct |
3 ms |
10588 KB |
Output is correct |
6 |
Correct |
5 ms |
10588 KB |
Output is correct |
7 |
Correct |
3 ms |
10588 KB |
Output is correct |
8 |
Correct |
3 ms |
10588 KB |
Output is correct |
9 |
Correct |
3 ms |
10840 KB |
Output is correct |
10 |
Correct |
3 ms |
10588 KB |
Output is correct |
11 |
Correct |
678 ms |
11868 KB |
Output is correct |
12 |
Correct |
3 ms |
10588 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
14 ms |
23388 KB |
Output is correct |
2 |
Correct |
13 ms |
23496 KB |
Output is correct |
3 |
Correct |
14 ms |
23388 KB |
Output is correct |
4 |
Correct |
14 ms |
23388 KB |
Output is correct |
5 |
Correct |
13 ms |
23276 KB |
Output is correct |
6 |
Correct |
1 ms |
4444 KB |
Output is correct |
7 |
Correct |
1 ms |
4440 KB |
Output is correct |
8 |
Correct |
1 ms |
4600 KB |
Output is correct |
9 |
Correct |
13 ms |
23492 KB |
Output is correct |
10 |
Correct |
2 ms |
6492 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
53 ms |
96620 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
14 ms |
23384 KB |
Output is correct |
2 |
Correct |
13 ms |
23644 KB |
Output is correct |
3 |
Correct |
13 ms |
23500 KB |
Output is correct |
4 |
Correct |
13 ms |
23384 KB |
Output is correct |
5 |
Correct |
15 ms |
23492 KB |
Output is correct |
6 |
Runtime error |
51 ms |
96700 KB |
Execution killed with signal 11 |
7 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
14 ms |
23424 KB |
Output is correct |
2 |
Correct |
14 ms |
23420 KB |
Output is correct |
3 |
Correct |
13 ms |
23300 KB |
Output is correct |
4 |
Correct |
14 ms |
23388 KB |
Output is correct |
5 |
Correct |
16 ms |
23420 KB |
Output is correct |
6 |
Runtime error |
51 ms |
96784 KB |
Execution killed with signal 11 |
7 |
Halted |
0 ms |
0 KB |
- |