結果
| 問題 |
No.402 最も海から遠い場所
|
| コンテスト | |
| ユーザー |
wing3196
|
| 提出日時 | 2016-07-22 22:45:06 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 1,054 ms / 3,000 ms |
| コード長 | 1,058 bytes |
| コンパイル時間 | 3,327 ms |
| コンパイル使用メモリ | 164,976 KB |
| 実行使用メモリ | 243,372 KB |
| 最終ジャッジ日時 | 2024-11-06 12:49:57 |
| 合計ジャッジ時間 | 7,529 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 19 |
ソースコード
#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();
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 || isUsed[ny][nx]) continue;
isUsed[ny][nx] = true;
q.emplace(make_pair(make_pair(nx, ny), cost + 1));
}
}
printf("%lld\n", ma);
return 0;
}
wing3196