#include "wombats.h"
#include<iostream>
using namespace std;
const int tmw=7;
const int M=5001,N=201,S=1301;
int m,n;
int dp[S][N][N];
int dp2[32][N][N];
int lc[S],rc[S];
int h[M][N],v[M][N];
void cal(int id,int st,int l,int r,int optl,int optr){
if(l>r) return;
int opt=0,mid=(l+r)/2;
dp[id][st][mid]=1e9;
for(int i=optl; i<=optr ;i++)
if(dp[id][st][mid]>dp[lc[id]][st][i]+dp[rc[id]][i][mid])
dp[id][st][mid]=dp[lc[id]][st][i]+dp[rc[id]][i][mid],opt=i;
cal(id,st,l,mid-1,optl,opt);
cal(id,st,mid+1,r,opt,optr);
}
void cal2(int id,int st,int l,int r,int optl,int optr){
if(l>r) return;
int opt=0,mid=(l+r)/2;
dp2[id][st][mid]=1e9;
for(int i=optl; i<=optr ;i++)
if(dp2[id][st][mid]>dp2[id*2][st][i]+dp2[id*2+1][i][mid])
dp2[id][st][mid]=dp2[id*2][st][i]+dp2[id*2+1][i][mid],opt=i;
cal2(id,st,l,mid-1,optl,opt);
cal2(id,st,mid+1,r,opt,optr);
}
void upd2(int id,int l,int r){
if(l==r){
for(int i=1; i<=n ;i++){
dp2[id][i][i]=v[l][i];
for(int j=i+1; j<=n ;j++)
dp2[id][i][j]=dp2[id][i][j-1]-v[l][j-1]+v[l][j]+h[l][j-1];
for(int j=i-1; j>=1 ;j--)
dp2[id][i][j]=dp2[id][i][j+1]-v[l][j+1]+v[l][j]+h[l][j];
for(int j=1+1; j<=n ;j++) dp2[id][i][j]=min(dp2[id][i][j],dp2[id][i][j-1]+h[l+1][j-1]);
for(int j=n-1; j>=1 ;j--) dp2[id][i][j]=min(dp2[id][i][j],dp2[id][i][j+1]+h[l+1][j]);
//cout << id << ' ' << l << ' ' << i << ": ";
//for(int j=1; j<=n ;j++) cout << dp2[id][i][j] << ' ';
//cout << endl;
}
return;
}
int mid=(l+r)/2;
upd2(id*2,l,mid);upd2(id*2+1,mid+1,r);
for(int i=1; i<=n ;i++) cal2(id,i,1,n,1,n);
}
void upd(int id,int l,int r,int x,int y){
if((l>x || x>r) && (l>y || y>r)) return;
if(r-l<tmw){
upd2(1,l,r);
for(int i=1; i<=n ;i++) for(int j=1; j<=n ;j++) dp[id][i][j]=dp2[1][i][j];
return;
}
int mid=(l+r)/2;
mid+=(tmw-mid)%tmw;
upd(lc[id],l,mid,x,y);
upd(rc[id],mid+1,r,x,y);
for(int i=1; i<=n ;i++) cal(id,i,1,n,1,n);
}
int ptr=1;
void build(int id,int l,int r){
if(r-l<tmw){
upd2(1,l,r);
for(int i=1; i<=n ;i++) for(int j=1; j<=n ;j++) dp[id][i][j]=dp2[1][i][j];
return;
}
lc[id]=++ptr;rc[id]=++ptr;
int mid=(l+r)/2;
mid+=(tmw-mid)%tmw;
build(lc[id],l,mid);build(rc[id],mid+1,r);
for(int i=1; i<=n ;i++) cal(id,i,1,n,1,n);
}
void init(int R, int C, int H[5000][200], int V[5000][200]){
m=R;n=C;
for(int i=0; i<m ;i++)
for(int j=0; j<n ;j++)
h[i+1][j+1]=H[i][j],v[i+1][j+1]=V[i][j];
build(1,1,m-1);
}
void changeH(int P, int Q, int W){
int p=P+1,q=Q+1,w=W;
h[p][q]=w;
upd(1,1,m-1,p-1,p);
}
void changeV(int P, int Q, int W){
int p=P+1,q=Q+1,w=W;
v[p][q]=w;
upd(1,1,m-1,p,p);
}
int escape(int V1, int V2){
int p=V1+1,q=V2+1;
return dp[1][p][q];
}
Compilation message
grader.c: In function 'int main()':
grader.c:15:6: warning: variable 'res' set but not used [-Wunused-but-set-variable]
int res;
^~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
50 ms |
35320 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
376 KB |
Output is correct |
2 |
Correct |
2 ms |
376 KB |
Output is correct |
3 |
Correct |
2 ms |
376 KB |
Output is correct |
4 |
Runtime error |
204 ms |
263168 KB |
Execution killed with signal 9 (could be triggered by violating memory limits) |
5 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
375 ms |
4124 KB |
Output is correct |
2 |
Correct |
241 ms |
3960 KB |
Output is correct |
3 |
Runtime error |
226 ms |
263168 KB |
Execution killed with signal 9 (could be triggered by violating memory limits) |
4 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
60 ms |
45188 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
337 ms |
4016 KB |
Output is correct |
2 |
Correct |
257 ms |
4092 KB |
Output is correct |
3 |
Runtime error |
232 ms |
263168 KB |
Execution killed with signal 9 (could be triggered by violating memory limits) |
4 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
337 ms |
4012 KB |
Output is correct |
2 |
Correct |
254 ms |
3984 KB |
Output is correct |
3 |
Runtime error |
208 ms |
263168 KB |
Execution killed with signal 9 (could be triggered by violating memory limits) |
4 |
Halted |
0 ms |
0 KB |
- |