結果
問題 | No.3063 幅優先探索 |
ユーザー | leaf_1415 |
提出日時 | 2020-04-01 22:04:14 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 43 ms / 2,000 ms |
コード長 | 1,481 bytes |
コンパイル時間 | 1,231 ms |
コンパイル使用メモリ | 85,260 KB |
実行使用メモリ | 12,288 KB |
最終ジャッジ日時 | 2024-06-27 10:56:10 |
合計ジャッジ時間 | 1,866 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 42 ms
12,288 KB |
testcase_07 | AC | 43 ms
12,048 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
ソースコード
#include <iostream> #include <cstdio> #include <cmath> #include <ctime> #include <cstdlib> #include <cassert> #include <vector> #include <list> #include <stack> #include <queue> #include <deque> #include <map> #include <set> #include <bitset> #include <string> #include <algorithm> #include <utility> #define llint long long #define inf 1e18 #define rep(x, s, t) for(llint (x) = (s); (x) < (t); (x)++) #define Rep(x, s, t) for(llint (x) = (s); (x) <= (t); (x)++) #define chmin(x, y) (x) = min((x), (y)) #define chmax(x, y) (x) = max((x), (y)) using namespace std; typedef pair<llint, llint> P; llint h, w; llint sx, sy, gx, gy; char c[1005][1005]; llint dist[1005][1005]; int dx[] = {1, 0, -1, 0}, dy[] = {0, -1, 0, 1}; void bfs() { queue<P> Q; Q.push(P(sx, sy)); for(int y = 1; y <= h; y++){ for(int x = 1; x <= w; x++){ dist[x][y] = inf; } } dist[sx][sy] = 0; llint x, y; while(Q.size()){ x = Q.front().first, y = Q.front().second; Q.pop(); for(int i = 0; i < 4; i++){ llint nx = x + dx[i], ny = y + dy[i]; if(nx < 1 || nx > w || ny < 1 || ny > h) continue; //if(c[nx][ny] == '#') continue; if(dist[nx][ny] < inf/2) continue; dist[nx][ny] = dist[x][y] + 1; Q.push(P(nx, ny)); } } } int main(void) { ios::sync_with_stdio(0); cin.tie(0); cin >> h >> w; cin >> sy >> sx >> gy >> gx; for(int y = 1; y <= h; y++){ for(int x = 1; x <= w; x++){ cin >> c[x][y]; } } bfs(); cout << dist[gx][gy] << endl; return 0; }