結果
問題 | No.3063 幅優先探索 |
ユーザー | betrue12 |
提出日時 | 2020-04-01 22:14:38 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,020 bytes |
コンパイル時間 | 2,187 ms |
コンパイル使用メモリ | 211,980 KB |
実行使用メモリ | 8,448 KB |
最終ジャッジ日時 | 2024-06-27 11:11:16 |
合計ジャッジ時間 | 2,826 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 53 ms
8,448 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,944 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; int main(){ int H, W; cin >> H >> W; int sx, sy, gx, gy; cin >> sx >> sy >> gx >> gy; vector<string> S(H+2, string(W+2, '.')); for(int i=1; i<=H; i++){ string s; cin >> s; for(int j=0; j<W; j++) S[i][j+1] = s[j]; } H += 2; W += 2; auto inside = [&](int i, int j){ return i>=0 && i<H && j>=0 && j<W && S[i][j] != '#'; }; int dx[] = {0, 0, -1, 1}; int dy[] = {-1, 1, 0, 0}; queue<pair<int, int>> que; que.emplace(sx, sy); vector<vector<int>> dist(H, vector<int>(W, 1e9)); dist[sx][sy] = 0; while(que.size()){ auto p = que.front(); que.pop(); int i = p.first, j = p.second; for(int k=0; k<4; k++){ int x = i+dx[k], y = j+dy[k]; if(inside(x, y) && dist[x][y] == 1e9){ dist[x][y] = dist[i][j] + 1; que.emplace(x, y); } } } cout << dist[gx][gy] << endl; return 0; }