Submission #1074098

#TimeUsernameProblemLanguageResultExecution timeMemory
10740981neWombats (IOI13_wombats)C++14
0 / 100
128 ms262144 KiB
#include "wombats.h" #include <bits/stdc++.h> using namespace std; struct node{ int x,y,d; }; vector<vector<vector<node>>>adj; int dist1[200][5000][200]; int dist2[200][5000][200]; int n,m; void init(int R, int C, int H[5000][200], int V[5000][200]) { /* ... */ n = R,m = C; adj.resize(R,vector<vector<node>>(C)); for (int i = 0;i<R;++i){ for (int j = 0;j<C - 1;++j){ adj[i][j].push_back({i,j + 1,H[i][j]}); adj[i][j + 1].push_back({i,j,H[i][j]}); } } for (int i = 0;i<R - 1;++i){ for (int j = 0;j<C;++j){ adj[i][j].push_back({i + 1,j,V[i][j]}); adj[i + 1][j].push_back({i,j,V[i][j]}); } } for (int i = 0;i<200;++i){ for (int j = 0;j<5000;++j){ for (int k = 0;k<200;++k){ dist1[i][j][k] = 1e9; dist2[i][j][k] = 1e9; } } } for (int i = 0;i<C;++i){ queue<pair<int,int>>q; q.push({0,i}); dist1[i][0][i] = 0; while(!q.empty()){ auto u = q.front(); q.pop(); for (auto x:adj[u.first][u.second]){ if (u.first - x.x > 0)continue; if (dist1[i][x.x][x.y] > dist1[i][u.first][u.second] + x.d){ dist1[i][x.x][x.y] = dist1[i][u.first][u.second] + x.d; q.push({x.x,x.y}); } } } } for (int i = 0;i<C;++i){ queue<pair<int,int>>q; q.push({R - 1,i}); dist2[i][R - 1][i] = 0; while(!q.empty()){ auto u = q.front(); q.pop(); for (auto x:adj[u.first][u.second]){ if (u.first - x.x > 0)continue; if (dist2[i][x.x][x.y] > dist2[i][u.first][u.second] + x.d){ dist2[i][x.x][x.y] = dist2[i][u.first][u.second] + x.d; q.push({x.x,x.y}); } } } } } void changeH(int P, int Q, int W) { /* ... */ } void changeV(int P, int Q, int W) { /* ... */ } int escape(int V1, int V2) { //cout<<V1<<" "<<n - 1<<" "<<V2<<" "<<dist1[V1][m - 1][V2]<<'\n'; return dist1[V1][n - 1][V2]; }

Compilation message (stderr)

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 timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...