結果

問題 No.402 最も海から遠い場所
ユーザー wing3196wing3196
提出日時 2016-07-22 22:43:30
言語 C++11
(gcc 11.4.0)
結果
MLE  
実行時間 -
コード長 1,057 bytes
コンパイル時間 1,700 ms
コンパイル使用メモリ 165,884 KB
実行使用メモリ 813,740 KB
最終ジャッジ日時 2024-04-24 05:46:26
合計ジャッジ時間 7,009 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
12,416 KB
testcase_01 AC 5 ms
12,288 KB
testcase_02 AC 6 ms
13,184 KB
testcase_03 AC 5 ms
12,416 KB
testcase_04 AC 4 ms
12,288 KB
testcase_05 AC 4 ms
12,416 KB
testcase_06 AC 4 ms
12,416 KB
testcase_07 AC 5 ms
12,416 KB
testcase_08 AC 4 ms
12,416 KB
testcase_09 AC 5 ms
12,416 KB
testcase_10 AC 5 ms
12,288 KB
testcase_11 AC 5 ms
12,544 KB
testcase_12 AC 5 ms
12,416 KB
testcase_13 AC 14 ms
17,152 KB
testcase_14 AC 9 ms
14,720 KB
testcase_15 AC 54 ms
36,412 KB
testcase_16 AC 81 ms
47,944 KB
testcase_17 AC 877 ms
444,660 KB
testcase_18 AC 1,475 ms
118,116 KB
testcase_19 MLE -
testcase_20 -- -
testcase_21 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define int long long

const int INF = LLONG_MAX/2;
const int dx[] = {1, 1, 1, 0, -1, -1, -1, 0}, dy[] = {-1, 0, 1, 1, 1, 0, -1, -1};

int H, W;
char fld[3002][3002];
bool isUsed[3002][3002];

signed main()
{
	fill(fld[0], fld[0] + 3002*3002, '.');
	cin >> H >> W;
	queue< pair< pair<int, int>, int> > q;
	for (int i = 1; i < H + 1; i++)
	{
		for (int j = 1; j < W + 1; j++)
		{
			cin >> fld[i][j];
		}
	}
	for (int i = 0; i < H + 2; i++)
	{
		for (int j = 0; j < W + 2; j++)
		{
			if (fld[i][j] == '.') q.emplace(make_pair(make_pair(j, i), 0));
		}
	}
	int ma = 0;
	while (!q.empty())
	{
		pair<int, int> p = q.front().first;
		int cost = q.front().second;
		q.pop();
		if (isUsed[p.second][p.first]) continue;
		isUsed[p.second][p.first] = true;
		ma = cost;
		for (int i = 0; i < 8; i++)
		{
			int nx = p.first + dx[i], ny = p.second + dy[i];
			if (nx < 0 || W + 2 <= nx || ny < 0 || H + 2 <= ny) continue;
			q.emplace(make_pair(make_pair(nx, ny), cost + 1));
		}
	}
	printf("%lld\n", ma);
	return 0;
}
0