제출 #236099

#제출 시각아이디문제언어결과실행 시간메모리
236099kartelPortal (COCI17_portal)C++14
96 / 120
180 ms6592 KiB
#include <bits/stdc++.h> //#include <ext/pb_ds/assoc_container.hpp> //#include <ext/pb_ds/tree_policy.hpp> #define in(x) freopen(x, "r", stdin) #define out(x) freopen(x, "w", stdout) #pragma GCC optimize("Ofast") #pragma GCC optimize("unroll-loops") #pragma GCC optimize("-O3") #define F first #define S second #define pb push_back #define N +100500 #define M ll(1e9 + 7) #define sz(x) (int)x.size() #define re return #define oo ll(1e9) #define el '\n' #define pii pair <int, int> using namespace std; //using namespace __gnu_pbds; //typedef tree <int, null_type, less_equal <int> , rb_tree_tag, tree_order_statistics_node_update> ordered_set; typedef long long ll; typedef long double ld; set <pair <int, pair <int, int> > > q; int mrk[550][550]; char c[550][550]; int go[4][550][550], i, j, n, m, ans, x, y, sx, sy, ex, ey; void get(int &x, int &y, int &st) { x = (*q.begin()).S.F; y = (*q.begin()).S.S; st = (*q.begin()).F; q.erase(q.begin()); } void put(int x, int y, int st) { if (mrk[x][y] < st) return; q.erase({mrk[x][y], {x, y}}); q.insert({st, {x, y}}); mrk[x][y] = st; } void Portal(int x, int y, int st) { for (int fst = 0; fst < 4; fst++) { for (int sd = 0; sd < 4; sd++) { if (fst == sd) continue; int cx = x; int cy = y; if (fst < 2) cy = go[fst][x][y]; else cx = go[fst][x][y]; int nst = st + abs(x - cx) + abs(y - cy) + 1; if (sd < 2) cy = go[sd][cx][cy]; else cx = go[sd][cx][cy]; put(cx, cy, nst); } } } void putall(int x, int y, int st) { int steps[4][2] = {{1, 0}, {0, 1}, {-1, 0}, {0, -1}}; for (int i = 0; i < 4; i++) { int cx = x + steps[i][0]; int cy = y + steps[i][1]; if (cx < 1 || cy < 1 || cx > n || cy > m) continue; put(cx, cy, st + 1); } Portal(x, y, st); } int main() { srand(time(0)); ios_base::sync_with_stdio(0); iostream::sync_with_stdio(0); ios::sync_with_stdio(0); cin.tie(NULL); cout.tie(NULL); // in("input.txt"); // out("output.txt"); cin >> n >> m; for (i = 1; i <= n; i++) { for (j = 1; j <= m; j++) { cin >> c[i][j]; if (c[i][j] == 'C') sx = i, sy = j; if (c[i][j] == 'F') ex = i, ey = j; if (c[i][j] == '#') mrk[i][j] = -1; else mrk[i][j] = 1e9; } } for (i = 1; i <= n; i++) { for (j = 1; j <= m; j++) { if (c[i][j] == '#') go[0][i][j] = j + 1; else go[0][i][j] = go[0][i][j - 1]; } for (j = m; j >= 1; j--) { if (c[i][j] == '#') go[1][i][j] = j - 1; else go[1][i][j] = go[1][i][j + 1]; } } for (j = 1; j <= m; j++) { for (i = 1; i <= n; i++) { if (c[i][j] == '#') go[2][i][j] = i + 1; else go[2][i][j] = go[2][i - 1][j]; } for (i = n; i >= 1; i--) { if (c[i][j] == '#') go[3][i][j] = i - 1; else go[3][i][j] = go[3][i + 1][j]; } } put(sx, sy, 0); while (sz(q)) { int st; get(x, y, st); putall(x, y, st); } if (mrk[ex][ey] == oo) cout << "nemoguce"; else cout << mrk[ex][ey] << el; } // //110000 //1100
#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...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...