結果
| 問題 |
No.402 最も海から遠い場所
|
| コンテスト | |
| ユーザー |
wing3196
|
| 提出日時 | 2016-07-22 22:43:30 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
MLE
|
| 実行時間 | - |
| コード長 | 1,057 bytes |
| コンパイル時間 | 2,763 ms |
| コンパイル使用メモリ | 166,436 KB |
| 実行使用メモリ | 814,716 KB |
| 最終ジャッジ日時 | 2024-11-06 12:48:37 |
| 合計ジャッジ時間 | 9,678 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 16 MLE * 1 -- * 2 |
ソースコード
#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;
}
wing3196