結果

問題 No.3063 幅優先探索
ユーザー leaf_1415leaf_1415
提出日時 2020-04-01 22:04:14
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 1,481 bytes
コンパイル時間 1,843 ms
コンパイル使用メモリ 78,920 KB
実行使用メモリ 12,340 KB
最終ジャッジ日時 2023-09-09 18:20:17
合計ジャッジ時間 2,706 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,572 KB
testcase_01 AC 2 ms
5,572 KB
testcase_02 AC 2 ms
5,492 KB
testcase_03 AC 2 ms
5,400 KB
testcase_04 AC 2 ms
5,532 KB
testcase_05 AC 2 ms
5,416 KB
testcase_06 AC 41 ms
12,340 KB
testcase_07 AC 42 ms
12,332 KB
testcase_08 AC 2 ms
5,476 KB
testcase_09 AC 2 ms
5,460 KB
testcase_10 AC 2 ms
5,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
}
0