結果
問題 | No.3063 幅優先探索 |
ユーザー | mmn15277198 |
提出日時 | 2021-04-18 16:04:48 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,364 bytes |
コンパイル時間 | 1,596 ms |
コンパイル使用メモリ | 176,788 KB |
実行使用メモリ | 9,344 KB |
最終ジャッジ日時 | 2024-07-04 04:38:10 |
合計ジャッジ時間 | 2,560 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | AC | 32 ms
9,344 KB |
testcase_07 | AC | 41 ms
9,344 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { int h , w; cin >> h >> w; int y1 , x1; cin >> y1 >> x1; y1--; x1--; int y2 , x2; cin >> y2 >> x2; y2--; x2--; vector<string> s(h); for (int i = 0 ; i < h; i++) cin >> s[i]; queue<int> qx; queue<int> qy; qx.push(x1); qy.push(y1); vector<vector<int>> a(h , vector<int>(w , 0)); while (!qx.empty()) { int x = qx.front(); int y = qy.front(); qx.pop(); qy.pop(); if (x == x2 && y == y2) { cout << a[x][y] << endl; return 0; } if (x + 1 < w && s[y][x + 1] == '.') { qx.push(x + 1); qy.push(y); s[y][x + 1] = 'A'; a[y][x + 1] = a[y][x] + 1; } if (x - 1 >= 0 && s[y][x - 1] == '.') { qx.push(x - 1); qy.push(y); s[y][x - 1] = 'A'; a[y][x - 1] = a[y][x] + 1; } if (y + 1 < h && s[y + 1][x] == '.') { qx.push(x); qy.push(y + 1); s[y + 1][x] = 'A'; a[y + 1][x] = a[y][x] + 1; } if (y - 1 >= 0 && s[y - 1][x] == '.') { qx.push(x); qy.push(y - 1); s[y - 1][x] = 'A'; a[y - 1][x] = a[y][x] + 1; } } return 0; }