Submission #381962

#TimeUsernameProblemLanguageResultExecution timeMemory
381962kartelPatkice II (COCI21_patkice2)C++14
110 / 110
1272 ms100720 KiB
#include <bits/stdc++.h> #define in(x) freopen(x, "r", stdin) #define out(x) freopen(x, "w", stdout) //#include <time.h> //#include <ext/pb_ds/assoc_container.hpp> //#include <ext/pb_ds/tree_policy.hpp> //#pragma GCC optimize("Ofast") //#pragma GCC optimize("unroll-loops") //#pragma GCC optimize("-O3") #define F first #define S second #define pb push_back //#define M ll(1e9 + 7) #define M ll(998244353) #define sz(x) (int)x.size() #define re return #define oo ll(1e18) #define el '\n' #define pii pair <int, int> #define all(x) (x).begin(), (x).end() #define arr_all(x, n) (x + 1), (x + 1 + n) #define vi vector<int> #define eps (ld)1e-9 using namespace std; typedef long long ll; //using namespace __gnu_pbds; //typedef tree <ll, null_type, less_equal <ll> , rb_tree_tag, tree_order_statistics_node_update> ordered_set; typedef double ld; typedef unsigned long long ull; typedef short int si; const int N = 2e3 + 50; int steps[4][2] = {{0, -1}, {0, 1}, {1, 0}, {-1, 0}}; set <pair <int, pii> > q; int n, m, sx, sy, ex, ey; int nm[300]; int d[N][N]; char c[N][N], ans[N][N]; pii pr[N][N]; void go(int x, int y, int cnt, int i) { if (i == 4) { return; } int cx = x + steps[i][0]; int cy = y + steps[i][1]; if (cx < 1 || cy < 1 || cx > n || cy > m || d[cx][cy] <= cnt) { return; } d[cx][cy] = cnt; q.insert({cnt, {cx, cy}}); pr[cx][cy] = {x, y}; } void change(int x, int y, int cnt) { for (int i = 0; i < 4; i++) { go(x, y, cnt + 1, i); } } void solve() { for (int i = 1; i <= n; i++) { for (int j = 1; j <= m; j++) { d[i][j] = 1e9; } } d[sx][sy] = 0; for (int i = 0; i < 4; i++) { int cx = sx + steps[i][0]; int cy = sy + steps[i][1]; if (cx < 1 || cy < 1 || cx > n || cy > m || d[cx][cy] <= 0) { continue; } d[cx][cy] = 0; q.insert({0, {cx, cy}}); pr[cx][cy] = {sx, sy}; } while (sz(q)) { int x = (*q.begin()).S.F; int y = (*q.begin()).S.S; int cnt = (*q.begin()).F; q.erase(q.begin()); if (x == ex && y == ey) { break; } go(x, y, cnt, nm[c[x][y]]); change(x, y, cnt); } } int main() { // mt19937 rnd(chrono::steady_clock::now().time_since_epoch().count());; ios::sync_with_stdio(0); cin.tie(0); cout.tie(0); // in("toys.in"); // out("toys.out"); // in("input.txt"); // out("output.txt"); // cerr.precision(9); cerr << fixed; // clock_t tStart = clock(); cin >> n >> m; char cc[4]; nm['<'] = 0; nm['>'] = 1; nm['v'] = 2; nm['^'] = 3; nm['.'] = 4; cc[0] = '<'; cc[1] = '>'; cc[2] = 'v'; cc[3] = '^'; for (int i = 1; i <= n; i++) { for (int j = 1; j <= m; j++) { cin >> c[i][j]; ans[i][j] = c[i][j]; if (c[i][j] == 'o') { sx = i; sy = j; } if (c[i][j] == 'x') { ex = i; ey = j; } } } solve(); cout << d[ex][ey] << el; while (1) { int x = pr[ex][ey].F; int y = pr[ex][ey].S; if (x == sx && y == sy) { break; } 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; } if (cx == ex && cy == ey) { ans[x][y] = cc[i]; } } ex = x; ey = y; } for (int i = 1; i <= n; i++, cout << el) { for (int j = 1; j <= m; j++) { cout << ans[i][j]; } } } /* 7 4 6 7 2 3 1 5 */

Compilation message (stderr)

Main.cpp: In function 'void solve()':
Main.cpp:99:32: warning: array subscript has type 'char' [-Wchar-subscripts]
   99 |         go(x, y, cnt, nm[c[x][y]]);
      |                          ~~~~~~^
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...