#include <bits/stdc++.h>
#include "wombats.h"
using namespace std;
typedef long long ll;
const ll MAXN = 5010;
const ll MAXM = 210;
const ll INF = 4e18 + 10;
ll n,m;
ll hor[MAXN][MAXM];
ll ver[MAXN][MAXM];
ll dp[MAXN][MAXM][MAXM];
ll ans_m1;
void init_dp(ll src)
{
for(int i = 0; i < n; i++)
{
for(int j = 0; j < m; j++)
{
dp[i][j][src] = INF;
}
}
dp[0][src][src] = 0;
for(int j = 1; j < m; j++)
{
dp[0][j][src] = min(dp[0][j][src], dp[0][j - 1][src] + hor[0][j - 1]);
}
for(int j = m - 2; j >= 0; j--)
{
dp[0][j][src] = min(dp[0][j][src], dp[0][j + 1][src] + hor[0][j]);
}
}
void fill_dp(ll src)
{
init_dp(src);
for(int i = 1; i < n; i++)
{
for(int j = 0; j < m; j++)
{
dp[i][j][src] = min(dp[i][j][src], dp[i - 1][j][src] + ver[i - 1][j]);
}
for(int j = 1; j < m; j++)
{
dp[i][j][src] = min(dp[i][j][src], dp[i][j - 1][src] + hor[i][j - 1]);
}
for(int j = m - 2; j >= 0; j--)
{
dp[i][j][src] = min(dp[i][j][src], dp[i][j + 1][src] + hor[i][j]);
}
}
}
void calc()
{
for(ll src = 0; src < m; src++)
{
fill_dp(src);
}
}
void init(int R, int C, int H[5000][200], int V[5000][200])
{
n = R;
m = C;
for(int i = 0; i < n; i++)
{
for(int j = 0; j < m - 1; j++)
{
hor[i][j] = H[i][j];
}
}
for(int i = 0; i < n - 1; i++)
{
for(int j = 0; j < m; j++)
{
ver[i][j] = V[i][j];
}
if(m == 1)
ans_m1 += ver[i][0];
}
calc();
}
void changeH(int i, int j, int w) /// change path from x;y to x;y + 1
{
if(m == 1)
{
assert(false);
}
hor[i][j] = w;
calc();
}
void changeV(int i, int j, int w) /// change path from x;y to x + 1;y
{
if(m == 1)
{
ll new_change = w - ver[i][j];
ans_m1 += new_change;
ver[i][j] = w;
return;
}
ver[i][j] = w;
calc();
}
int escape(int from, int to) /// escape from (0;V1) to (N-1;V2)
{
if(m == 1)
{
return ans_m1;
}
return dp[n - 1][to][from];
}
/**
3 4
0 2 5
7 1 1
0 4 0
0 0 0 2
0 3 4 7
5
3 2 1
3 3 3
2 0 0 5
1 1 1 6
3 2 1
*/
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;
| ^~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
54 ms |
262144 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
2392 KB |
Output is correct |
2 |
Correct |
1 ms |
2396 KB |
Output is correct |
3 |
Correct |
1 ms |
2396 KB |
Output is correct |
4 |
Correct |
2 ms |
12632 KB |
Output is correct |
5 |
Correct |
2 ms |
12632 KB |
Output is correct |
6 |
Correct |
2 ms |
12636 KB |
Output is correct |
7 |
Correct |
2 ms |
12636 KB |
Output is correct |
8 |
Correct |
2 ms |
12636 KB |
Output is correct |
9 |
Correct |
2 ms |
12636 KB |
Output is correct |
10 |
Correct |
3 ms |
12632 KB |
Output is correct |
11 |
Correct |
61 ms |
13648 KB |
Output is correct |
12 |
Correct |
2 ms |
12636 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1051 ms |
41880 KB |
Output is correct |
2 |
Correct |
1050 ms |
41872 KB |
Output is correct |
3 |
Correct |
1090 ms |
41880 KB |
Output is correct |
4 |
Correct |
1083 ms |
41884 KB |
Output is correct |
5 |
Correct |
1022 ms |
41876 KB |
Output is correct |
6 |
Correct |
0 ms |
2392 KB |
Output is correct |
7 |
Correct |
1 ms |
2396 KB |
Output is correct |
8 |
Correct |
0 ms |
2396 KB |
Output is correct |
9 |
Correct |
5162 ms |
41904 KB |
Output is correct |
10 |
Correct |
2 ms |
8536 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
36 ms |
262144 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1008 ms |
42068 KB |
Output is correct |
2 |
Correct |
1038 ms |
41880 KB |
Output is correct |
3 |
Correct |
1058 ms |
41880 KB |
Output is correct |
4 |
Correct |
1125 ms |
41880 KB |
Output is correct |
5 |
Correct |
1069 ms |
41872 KB |
Output is correct |
6 |
Runtime error |
58 ms |
262144 KB |
Execution killed with signal 9 |
7 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1066 ms |
41872 KB |
Output is correct |
2 |
Correct |
1037 ms |
41868 KB |
Output is correct |
3 |
Correct |
1105 ms |
41880 KB |
Output is correct |
4 |
Correct |
1146 ms |
41880 KB |
Output is correct |
5 |
Correct |
1018 ms |
41888 KB |
Output is correct |
6 |
Runtime error |
96 ms |
262144 KB |
Execution killed with signal 9 |
7 |
Halted |
0 ms |
0 KB |
- |