Submission #737054

#TimeUsernameProblemLanguageResultExecution timeMemory
737054nguyentunglamMaze (JOI23_ho_t3)C++17
19 / 100
2076 ms864 KiB
#include<bits/stdc++.h> #define fi first #define se second #define endl "\n" #define ii pair<int, int> using namespace std; vector<vector<int> > a, f; int mx[4] = {0, 0, -1, 1}; int my[4] = {1, -1, 0, 0}; int main() { #define task "" cin.tie(0) -> sync_with_stdio(0); if (fopen ("task.inp", "r")) { freopen ("task.inp", "r", stdin); freopen ("task.out", "w", stdout); } if (fopen (task".inp", "r")) { freopen (task".inp", "r", stdin); freopen (task".out", "w", stdout); } int r, c, n; cin >> r >> c >> n; a = vector<vector<int> > (r + 2, vector<int> (c + 2)); f = vector<vector<int> > (r + 2, vector<int> (c + 2)); int sr, sc, gr, gc; cin >> sr >> sc >> gr >> gc; for(int i = 1; i <= r; i++) for(int j = 1; j <= c; j++) { char c; cin >> c; if (c == '.') a[i][j] = 0; else a[i][j] = 1; f[i][j] = 1e9; } deque<tuple<int, int, int> > q; f[sr][sc] = 0; q.push_back({0, sr, sc}); while (!q.empty()) { int cost, x, y; tie(cost, x, y) = q.front(); q.pop_front(); if (cost != f[x][y]) continue; for(int k = 0; k < 4; k++) { int xx = x + mx[k], yy = y + my[k]; if (xx < 1 || xx > r || yy < 1 || yy > c || a[xx][yy]) continue; if (f[xx][yy] > f[x][y]) { f[xx][yy] = f[x][y]; q.push_front({f[xx][yy], xx, yy}); } } for(int i = 1; i <= r; i++) for(int j = 1; j <= c; j++) { int d1 = abs(i - x), d2 = abs(j - y); if (d1 > d2) swap(d1, d2); if (d1 < n && d2 <= n && f[i][j] > f[x][y] + 1) { f[i][j] = f[x][y] + 1; q.push_back({f[i][j], i, j}); } } } cout << f[gr][gc]; }

Compilation message (stderr)

Main.cpp: In function 'int main()':
Main.cpp:14:17: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   14 |         freopen ("task.inp", "r", stdin);
      |         ~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
Main.cpp:15:17: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   15 |         freopen ("task.out", "w", stdout);
      |         ~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
Main.cpp:18:17: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   18 |         freopen (task".inp", "r", stdin);
      |         ~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
Main.cpp:19:17: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   19 |         freopen (task".out", "w", stdout);
      |         ~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
#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...