#pragma GCC optimize("O3")
#include <bits/stdc++.h>
#include "wombats.h"
using namespace std;
typedef long long ll;
int h[5000][200],v[5000][200];
int ans[5000][200][200];
int r,c;
int mi=200;
struct node{
int r,c,d,fin;
bool operator<(const node &x)const {
return d<x.d;
}
bool operator>(const node &x)const {
return d>x.d;
}
};
void calc(){
for(int i=0;i<r;i++){
for(int j=0;j<c;j++){
for(int x=0;x<c;x++)ans[i][j][x]=-1;
}
}
priority_queue<node,vector<node>,greater<node> >q;
for(int i=0;i<c;i++)q.push({r-1,i,0,i});
while(!q.empty()){
node x=q.top();
q.pop();
if(ans[x.r][x.c][x.fin]>=0)continue;
ans[x.r][x.c][x.fin]=x.d;
if(x.c>0 && ans[x.r][x.c-1][x.fin]==-1)q.push({x.r,x.c-1,x.d+h[x.r][x.c-1],x.fin});
if(x.c<c-1 && ans[x.r][x.c+1][x.fin]==-1)q.push({x.r,x.c+1,x.d+h[x.r][x.c],x.fin});
if(x.r>0 && ans[x.r-1][x.c][x.fin]==-1)q.push({x.r-1,x.c,x.d+v[x.r-1][x.c],x.fin});
}
}
void init(int R, int C, int H[5000][200], int V[5000][200]) {
for(int i=0;i<5000;i++){
for(int j=0;j<200;j++){
h[i][j]=H[i][j];
v[i][j]=V[i][j];
}
}
r=R;
c=C;
if(c<=mi)calc();
}
void changeH(int P, int Q, int W) {
h[P][Q]=W;
if(c<=mi)calc();
}
void changeV(int P, int Q, int W) {
v[P][Q]=W;
if(c<=mi)calc();
}
bool vis[5000][200];
int escape(int V1, int V2) {
if(c<=mi)return ans[0][V1][V2];
for(int i=0;i<r;i++){
for(int j=0;j<c;j++){
vis[i][j]=0;
}
}
priority_queue<node,vector<node>,greater<node> >q;
q.push({r-1,V2,0,0});
while(!q.empty()){
node x=q.top();
q.pop();
if(vis[x.r][x.c])continue;
vis[x.r][x.c]=1;
if(x.r==0 && x.c==V1)return x.d;
if(x.c>0)q.push({x.r,x.c-1,x.d+h[x.r][x.c-1],x.fin});
if(x.c<c-1)q.push({x.r,x.c+1,x.d+h[x.r][x.c],x.fin});
if(x.r>0)q.push({x.r-1,x.c,x.d+v[x.r-1][x.c],x.fin});
}
}
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;
^~~
wombats.cpp: In function 'int escape(int, int)':
wombats.cpp:78:1: warning: control reaches end of non-void function [-Wreturn-type]
}
^
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
224 ms |
33656 KB |
Output is correct |
2 |
Correct |
223 ms |
33536 KB |
Output is correct |
3 |
Correct |
306 ms |
35184 KB |
Output is correct |
4 |
Correct |
221 ms |
33536 KB |
Output is correct |
5 |
Correct |
215 ms |
33536 KB |
Output is correct |
6 |
Correct |
5 ms |
8192 KB |
Output is correct |
7 |
Correct |
6 ms |
8192 KB |
Output is correct |
8 |
Correct |
6 ms |
8192 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
6 ms |
8192 KB |
Output is correct |
2 |
Correct |
6 ms |
8192 KB |
Output is correct |
3 |
Correct |
5 ms |
8192 KB |
Output is correct |
4 |
Correct |
7 ms |
8832 KB |
Output is correct |
5 |
Correct |
6 ms |
8576 KB |
Output is correct |
6 |
Correct |
7 ms |
8576 KB |
Output is correct |
7 |
Correct |
7 ms |
8832 KB |
Output is correct |
8 |
Correct |
7 ms |
8576 KB |
Output is correct |
9 |
Correct |
7 ms |
8576 KB |
Output is correct |
10 |
Correct |
8 ms |
8576 KB |
Output is correct |
11 |
Correct |
91 ms |
9720 KB |
Output is correct |
12 |
Correct |
11 ms |
8576 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
20075 ms |
18264 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1073 ms |
41216 KB |
Output is correct |
2 |
Correct |
1421 ms |
41332 KB |
Output is correct |
3 |
Correct |
1191 ms |
41216 KB |
Output is correct |
4 |
Correct |
995 ms |
42152 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
20085 ms |
18272 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
20095 ms |
18140 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |