結果

問題 No.402 最も海から遠い場所
ユーザー kurenai3110kurenai3110
提出日時 2016-07-23 00:46:40
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 955 bytes
コンパイル時間 565 ms
コンパイル使用メモリ 64,616 KB
実行使用メモリ 45,596 KB
最終ジャッジ日時 2024-04-24 06:09:02
合計ジャッジ時間 7,323 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
10,752 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 4 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 15 ms
5,376 KB
testcase_16 AC 21 ms
5,376 KB
testcase_17 AC 251 ms
20,480 KB
testcase_18 AC 910 ms
38,528 KB
testcase_19 AC 329 ms
38,784 KB
testcase_20 TLE -
testcase_21 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
using namespace std;

bool tof,tof2;
int h, w;

int solve(int cnt, vector<vector<int> > &land) {
	tof2 = false;
	for (int i = 0; i < h+2; i++) {
		for (int j = 0; j < w + 2; j++) {
			if (land[i][j] == cnt) {
				for (int a = -1; a < 2; a++) {
					for (int b = -1; b < 2; b++) {
						if (i + a > h + 1 || j + b > w + 1 || i + a < 0 || j + b < 0) continue;
						if (land[i + a][j + b] == 1) {
							tof2 = true;
							land[i + a][j + b] = cnt + 2;
						}
					}
				}
			}
		}
	}
	if (!tof2) return cnt;

	cnt = solve(cnt+2, land);

	return cnt;
}

int main()
{
	cin >> h >> w;
	vector<vector<int> > land;
	land.resize(h + 2);
	for (int i = 0; i < h + 2; i++) {
		land[i].resize(w+2);
	}

	for (int i = 1; i < h + 1; i++) {
		string s;
		cin >> s;
		for (int j = 0; j < w; j++) {
			if (s[j] == '#') land[i][j+1] = 1;
		}
	}
	int cnt = 0;

	cout << solve(cnt, land)/2 << endl;

    return 0;
}
0