#include "wombats.h"
#include<bits/stdc++.h>
using namespace std;
int tmp[200][200],SSZZ;
int opt[201][201];
struct matrix{
int V[200][200];
void friend operator *=(matrix &a,matrix &b){
memcpy(tmp,a.V,sizeof tmp);
for(int i=0;i<SSZZ;i++)
for(int j=0;j<SSZZ;j++)
a.V[i][j]=1e9;
for(int i=0;i<SSZZ;i++)
opt[SSZZ][i]=SSZZ;
for(int i=SSZZ;i--;) {
for(int k=0;k<=opt[i+1][0];k++)
if(a.V[i][0]>tmp[i][k]+b.V[k][0])
a.V[i][0]=tmp[i][k]+b.V[k][0],opt[i][0]=k;
for(int j=1;j<SSZZ;j++)
for(int k=opt[i][j-1];k<=opt[i+1][j];k++)
if(a.V[i][j]>tmp[i][k]+b.V[k][j])
a.V[i][j]=tmp[i][k]+b.V[k][j],opt[i][j]=k;
}
}
void reset(){
for(int i=0;i<200;i++)
memset(V[i],15,sizeof V[i]),V[i][i]=0;
}
} mygod[50],finalstuff;
int ans[200][200],lr[5000][200],dn[5000][200],col,row,SZ=200,blocknum;
void recalcblok(int blok){
mygod[blok].reset();
int end=min(row-1,SZ*blok+SZ);
for(int r=SZ*blok+1;r<=end;r++){
for(int i=0;i<col;i++) {
for(int j=0;j<col;j++)
mygod[blok].V[i][j]+=dn[r-1][j];
for(int j=0;++j<col;)
mygod[blok].V[i][j]=min(mygod[blok].V[i][j],
mygod[blok].V[i][j-1]+lr[r][j-1]);
for(int j=col;--j;)
mygod[blok].V[i][j-1]=min(mygod[blok].V[i][j-1],
mygod[blok].V[i][j]+lr[r][j-1]);
}
}
}
void redofinale(){
int pref[200]; memcpy(pref+1,lr[0],199*4);
pref[0]=0;
for(int i=1;i<200;i++) pref[i]+=pref[i-1];
for(int i=0;i<col;i++) for(int j=0;j<col;j++)
finalstuff.V[i][j]=abs(pref[i]-pref[j]);
for(int i=0;i<=blocknum;i++)
finalstuff*=mygod[i];
}
void init(int R, int C, int H[5000][200], int V[5000][200]) {
SSZZ=C;
for(int i=0;i<5000;i++)
memcpy(lr[i],H[i],sizeof lr[i]),
memcpy(dn[i],V[i],sizeof dn[i]);
row=R;col=C;
blocknum=(R-2)/SZ;
for(int i=0;i<=blocknum;i++)
recalcblok(i);
redofinale();
}
void changeH(int P, int Q, int W) {
lr[P][Q]=W;
if(P)recalcblok(P/SZ),redofinale();
}
void changeV(int P, int Q, int W) {
memset(ans,-1,sizeof ans);
dn[P][Q]=W;
recalcblok(P/SZ),redofinale();
}
int escape(int V1, int V2) {
return finalstuff.V[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;
| ^~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
61 ms |
16220 KB |
Output is correct |
2 |
Correct |
57 ms |
16220 KB |
Output is correct |
3 |
Correct |
95 ms |
19024 KB |
Output is correct |
4 |
Correct |
56 ms |
16220 KB |
Output is correct |
5 |
Correct |
57 ms |
16220 KB |
Output is correct |
6 |
Correct |
4 ms |
8540 KB |
Output is correct |
7 |
Correct |
4 ms |
8540 KB |
Output is correct |
8 |
Correct |
4 ms |
8540 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
4 ms |
8536 KB |
Output is correct |
2 |
Correct |
4 ms |
8540 KB |
Output is correct |
3 |
Correct |
4 ms |
8540 KB |
Output is correct |
4 |
Correct |
4 ms |
8540 KB |
Output is correct |
5 |
Correct |
4 ms |
8540 KB |
Output is correct |
6 |
Correct |
4 ms |
8540 KB |
Output is correct |
7 |
Correct |
4 ms |
8540 KB |
Output is correct |
8 |
Correct |
4 ms |
8540 KB |
Output is correct |
9 |
Correct |
4 ms |
8540 KB |
Output is correct |
10 |
Correct |
4 ms |
8536 KB |
Output is correct |
11 |
Correct |
43 ms |
10836 KB |
Output is correct |
12 |
Correct |
4 ms |
8536 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
268 ms |
9016 KB |
Output is correct |
2 |
Correct |
263 ms |
8904 KB |
Output is correct |
3 |
Correct |
270 ms |
9044 KB |
Output is correct |
4 |
Correct |
268 ms |
9144 KB |
Output is correct |
5 |
Correct |
262 ms |
9052 KB |
Output is correct |
6 |
Correct |
6 ms |
8536 KB |
Output is correct |
7 |
Correct |
4 ms |
8540 KB |
Output is correct |
8 |
Correct |
3 ms |
8564 KB |
Output is correct |
9 |
Correct |
1240 ms |
9144 KB |
Output is correct |
10 |
Correct |
5 ms |
8536 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
60 ms |
20316 KB |
Output is correct |
2 |
Correct |
71 ms |
20376 KB |
Output is correct |
3 |
Correct |
61 ms |
20316 KB |
Output is correct |
4 |
Incorrect |
79 ms |
21584 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
267 ms |
8944 KB |
Output is correct |
2 |
Correct |
272 ms |
9128 KB |
Output is correct |
3 |
Correct |
266 ms |
8796 KB |
Output is correct |
4 |
Correct |
265 ms |
9052 KB |
Output is correct |
5 |
Correct |
270 ms |
9052 KB |
Output is correct |
6 |
Correct |
59 ms |
20396 KB |
Output is correct |
7 |
Correct |
60 ms |
20372 KB |
Output is correct |
8 |
Correct |
60 ms |
20312 KB |
Output is correct |
9 |
Incorrect |
99 ms |
21584 KB |
Output isn't correct |
10 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
269 ms |
9140 KB |
Output is correct |
2 |
Correct |
278 ms |
9124 KB |
Output is correct |
3 |
Correct |
262 ms |
8796 KB |
Output is correct |
4 |
Correct |
285 ms |
9048 KB |
Output is correct |
5 |
Correct |
275 ms |
9140 KB |
Output is correct |
6 |
Correct |
59 ms |
20392 KB |
Output is correct |
7 |
Correct |
60 ms |
20312 KB |
Output is correct |
8 |
Correct |
59 ms |
20312 KB |
Output is correct |
9 |
Incorrect |
84 ms |
21584 KB |
Output isn't correct |
10 |
Halted |
0 ms |
0 KB |
- |