結果
問題 |
No.2913 二次元距離空間
|
ユーザー |
|
提出日時 | 2024-10-04 23:20:22 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,651 bytes |
コンパイル時間 | 1,937 ms |
コンパイル使用メモリ | 180,668 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-04 23:20:26 |
合計ジャッジ時間 | 2,391 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 19 WA * 9 |
コンパイルメッセージ
main.cpp: In function 'void solve()': main.cpp:28:14: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions] 28 | auto [now_i, now_j] = que.front(); | ^
ソースコード
#include<bits/stdc++.h> using namespace std; using ll = long long; #define all(a) (a).begin(), (a).end() #define pb push_back #define fi first #define se second mt19937_64 rng(chrono::system_clock::now().time_since_epoch().count()); const ll MOD1000000007 = 1000000007; const ll MOD998244353 = 998244353; const ll MOD[3] = {999727999, 1070777777, 1000000007}; const ll LINF = 1LL << 60LL; const int IINF = (1 << 30) - 2; void solve(){ int h, w; cin >> h >> w; vector<string> s(h); for(int i=0; i<h; i++) cin >> s[i]; int di[4] = {0, 0, 1, -1}, dj[4] = {1, -1, 0, 0}; vector<vector<pair<int, int>>> dist(h, vector<pair<int, int>>(w, {IINF, IINF})); dist[0][0] = {0, 0}; queue<pair<int, int>> que; que.push({0, 0}); while(!que.empty()){ auto [now_i, now_j] = que.front(); que.pop(); for(int k=0; k<4; k++){ int nxt_i = now_i + di[k]; int nxt_j = now_j + dj[k]; if(nxt_i<0||nxt_j<0||h<=nxt_i||w<=nxt_j) continue; if(s[nxt_i][nxt_j]=='#') continue; pair<int, int> nxt; nxt.fi = dist[now_i][now_j].fi + abs(di[k]), nxt.se = dist[now_i][now_j].se + abs(dj[k]); if(nxt < dist[nxt_i][nxt_j]){ dist[nxt_i][nxt_j] = nxt; que.push({nxt_i, nxt_j}); } } } if(dist[h-1][w-1]==make_pair(IINF, IINF)) cout << "No\n"; else{ cout << "Yes\n"; cout << dist[h-1][w-1].fi << ' ' << dist[h-1][w-1].se << '\n'; } } int main(){ cin.tie(nullptr); ios::sync_with_stdio(false); int T=1; //cin >> T; while(T--) solve(); }