Submission #970344

#TimeUsernameProblemLanguageResultExecution timeMemory
970344Halym2007Robots (APIO13_robots)C++17
100 / 100
1469 ms121616 KiB
#include <bits/stdc++.h> using namespace std; const int N = 5e2 + 5; #define ff first #define ss second #define pii pair <int, int> #define pb push_back char a[N][N]; queue <pii> q; // yokary saga asak cepe int aa[] = {-1, 0, 1, 0}; int bb[] = {0, 1, 0, -1}; int n, h, w, state[N][N][4], dp[N][N][10][10]; bool vis[N][N][10]; pii val[N][N][4]; pii ugur (int x, int y, int typ) { if (a[x][y] == 'A') typ = (typ + 3) % 4; else if (a[x][y] == 'C') typ = (typ + 1) % 4; if (state[x][y][typ] == 2) return val[x][y][typ]; else if (state[x][y][typ] == 1) return {-1, -1}; state[x][y][typ] = 1; int new_x = x + aa[typ], new_y = y + bb[typ]; if (new_x < 1 or new_y < 1 or new_x > h or new_y > w or a[new_x][new_y] == 'x') val[x][y][typ] = {x, y}; else val[x][y][typ] = ugur (new_x, new_y, typ); state[x][y][typ] = 2; return val[x][y][typ]; } int main () { ios::sync_with_stdio(0);cin.tie(0); // freopen ("input.txt", "r", stdin); cin >> n >> w >> h; for (int i = 1; i <= h; ++i) { for (int j = 1; j <= w; ++j) { cin >> a[i][j]; } } for (int i = 1; i <= n; ++i) { for (int j = 1; j <= n; ++j) { for (int l = 1; l <= h; ++l) { for (int r = 1; r <= w; ++r) { dp[l][r][i][j] = 1e9; } } } } // cout << dp[1][10][1][1]; // return 0; // if (j == 2 and git == 2) // return cout << "ppp ->" << dp[1][1][2][2] << "\n", 0; for (int i = 1; i <= n; ++i) { for (int j = 1; j + i - 1 <= n; ++j) { int git = j + i - 1; vector <vector <pii>> v(N * N + 5); if (i == 1) { for (int l = 1; l <= h; ++l) { for (int r = 1; r <= w; ++r) { if (int(a[l][r]-48) == j) { dp[l][r][j][j] = 0; // if (l == 1 and r == 1 and j == 1 and j == 1) { // cout << "mejow"; // return 0; // } v[0].pb ({l, r}); } } } // continue; } // if (j == 2 and git == 2) // return cout << "ppp ->" << dp[1][1][2][2] << "\n", 0; // if (j == 2 and git == 2) { // cout << dp[1][1][2][2]; // return 0; // } else { for (int l = 1; l <= h; ++l) { for (int r = 1; r <= w; ++r) { int sym = 1e9; for (int k = j; k < git; ++k) { sym = min (sym, dp[l][r][j][k] + dp[l][r][k + 1][git]); // if (l == 1 and r == 1 and j == 1 and git == 2 and !sym) { // cout << "kk - > " << sym << " " << dp[l]; // return 0; // } } dp[l][r][j][git] = sym; if (sym < N * N) v[sym].pb ({l, r}); // if (l == 1 and r == 1 and j == 1 and git == 2) { // cout << "kk - > " << sym; // return 0; // } } } } // if (j == 1 and git == 2) { // cout << dp[1][1][1][2]; // return 0; // } // tapmaly dp[l][r][j][git] // if (j == 2 and git == 2) // return cout << "ppp ->" << dp[1][1][2][2] << "\n", 0; for (int k = 0; k < N * N; ++k) { for (pii x : v[k]) { for (int l = 0; l < 4; ++l) { pii new_x = ugur (x.ff, x.ss, l); // if (x.ff == x.ss and x.ff == 1) { // cout << new_x.ff << " " << new_x.ss << " " << dp[new_x.ff][new_x.ss][j][git] << " " << k << "\n"; //// return 0; // } if (new_x.ff != -1 and new_x.ss != -1) { if (dp[new_x.ff][new_x.ss][j][git] > k + 1) { // dp[x.ff][x.ss][j][git] = dp[new_x.ff][new_x.ss][j][git] + 1; dp[new_x.ff][new_x.ss][j][git] = k + 1; v[k + 1].pb ({new_x.ff, new_x.ss}); } } // if (new_x.ff == 1 and new_x.ss == 10) { // cout << "menow : " << dp[1][10][1][1]; // return 0; // } // assert (dp[1][10][1][1] != 0); } } } // if (j == 1 and git == 1) // return cout << "pppk ->" << dp[1][1][1][1] << "\n", 0; // return 0; } } // return cout << "oo - > " << dp[1][1][1][2], 0; int jogap = 1e9; for (int i = 1; i <= h; ++i) { for (int j = 1; j <= w; ++j) { jogap = min (jogap, dp[i][j][1][n]); // cout << i << ' ' << j << ' ' << dp[i][j][1][2] << '\n'; } } if (jogap == 1e9) jogap = -1; cout << jogap; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...