#include <bits/stdc++.h>
#include "wombats.h"
#define F first
#define S second
using namespace std;
const int N = 5e3 + 10 , M = 2e2 + 10 , Sq = 10 , inf = 1e9 + 10;
int r , c , h[N][M] , v[N][M] , nex[Sq + 10][M][M] , adj[M][M] , ans[M][M] , dis[N][M] , dis2[Sq + 10][M] , las;
bool is_update , marked[N][M];
void Dij(int Ps , int Qs)
{
int num = Ps / Sq , R = min(r - 1 , Ps + Sq);
las = max(las , num);
for(int i = Ps ; i <= R ; i++) for(int j = 0 ; j < c ; j++)
{
marked[i][j] = false;
dis[i][j] = inf;
}
dis[Ps][Qs] = 0;
priority_queue <pair<int , pair<int , int>> , vector <pair<int , pair<int , int>>> , greater<pair<int , pair<int , int>>>> pq;
pq.push({Ps , {0 , Qs}});
while(!pq.empty())
{
auto now = pq.top(); pq.pop();
int D = now.S.F , p = now.F , q = now.S.S;
if(marked[p][q])
continue;
marked[p][q] = true;
if(q + 1 < c && D + h[p][q] < dis[p][q + 1])
{
dis[p][q + 1] = D + h[p][q];
pq.push({p , {dis[p][q + 1] , q + 1}});
}
if(q - 1 >= 0 && D + h[p][q - 1] < dis[p][q - 1])
{
dis[p][q - 1] = D + h[p][q - 1];
pq.push({p , {dis[p][q - 1] , q - 1}});
}
if(p + 1 <= R && D + v[p][q] < dis[p + 1][q])
{
dis[p + 1][q] = D + v[p][q];
pq.push({p + 1 , {dis[p + 1][q] , q}});
}
}
for(int i = 0 ; i < c ; i++)
{
//cout << Ps << " " << Qs << " " << R << " " << i << " : " << dis[R][i] << endl;
nex[num][Qs][i] = dis[R][i];
}
if(num == 0)
{
for(int i = 0 ; i < c ; i++)
adj[Qs][i] = dis[Ps][i];
}
}
void Solve(int Qs)
{
for(int i = 0 ; i < las + 2 ; i++) for(int j = 0 ; j < c ; j++)
{
dis2[i][j] = inf;
}
for(int i = 0 ; i < c ; i++)
dis2[0][i] = adj[Qs][i];
for(int i = 0 ; i <= las ; i++)
{
for(int j = 0 ; j < c ; j++) for(int k = 0 ; k < c ; k++)
{
dis2[i + 1][k] = min(dis2[i + 1][k] , dis2[i][j] + nex[i][j][k]);
//cout << i << " " << j << " " << k << " " << dis2[i][j] << " " << nex[i][j][k] << endl;
}
}
for(int i = 0 ; i < c ; i++)
{
//cout << Qs << " " << i << " : " << dis2[las + 1][i] << endl;
ans[Qs][i] = dis2[las + 1][i];
}
}
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 + 1 < C ; j++)
h[i][j] = H[i][j];
for(int i = 0 ; i + 1 < R ; i++) for(int j = 0 ; j < C ; j++)
v[i][j] = V[i][j];
for(int i = 0 ; i < R - 1 ; i += Sq) for(int j = 0 ; j < C ; j++)
Dij(i , j);
}
void changeH(int P , int Q , int W)
{
is_update = false;
h[P][Q] = W;
for(int j = 0 ; j < c ; j++)
{
Dij(P / Sq , j);
if(P > 0 && P % Sq == 0)
Dij((P - 1) / Sq , j);
}
}
void changeV(int P , int Q , int W)
{
is_update = false;
v[P][Q] = W;
for(int j = 0 ; j < c ; j++)
Dij(P / Sq , j);
}
int escape(int v1 , int v2)
{
if(!is_update)
{
for(int i = 0 ; i < c ; i++)
Solve(i);
is_update = true;
}
return ans[v1][v2];
}
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;
| ^~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
13 ms |
27228 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
6488 KB |
Output is correct |
2 |
Correct |
1 ms |
6608 KB |
Output is correct |
3 |
Correct |
1 ms |
6492 KB |
Output is correct |
4 |
Correct |
2 ms |
8540 KB |
Output is correct |
5 |
Correct |
1 ms |
8540 KB |
Output is correct |
6 |
Correct |
1 ms |
6492 KB |
Output is correct |
7 |
Correct |
2 ms |
8744 KB |
Output is correct |
8 |
Correct |
1 ms |
6492 KB |
Output is correct |
9 |
Correct |
2 ms |
8660 KB |
Output is correct |
10 |
Correct |
2 ms |
8540 KB |
Output is correct |
11 |
Correct |
46 ms |
10964 KB |
Output is correct |
12 |
Correct |
2 ms |
8540 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1357 ms |
9740 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
24 ms |
35420 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1245 ms |
11056 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1265 ms |
7808 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |