結果
問題 | No.402 最も海から遠い場所 |
ユーザー | siman |
提出日時 | 2021-10-08 01:43:43 |
言語 | C++17(clang) (17.0.6 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,868 bytes |
コンパイル時間 | 1,240 ms |
コンパイル使用メモリ | 144,080 KB |
実行使用メモリ | 407,156 KB |
最終ジャッジ日時 | 2024-07-23 03:15:20 |
合計ジャッジ時間 | 6,654 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 11 ms
38,528 KB |
testcase_01 | AC | 11 ms
38,528 KB |
testcase_02 | WA | - |
testcase_03 | AC | 12 ms
38,528 KB |
testcase_04 | AC | 11 ms
38,528 KB |
testcase_05 | AC | 11 ms
38,520 KB |
testcase_06 | AC | 10 ms
38,656 KB |
testcase_07 | AC | 11 ms
38,400 KB |
testcase_08 | AC | 11 ms
38,528 KB |
testcase_09 | WA | - |
testcase_10 | AC | 11 ms
38,656 KB |
testcase_11 | AC | 12 ms
38,736 KB |
testcase_12 | AC | 11 ms
38,500 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 869 ms
407,156 KB |
testcase_20 | AC | 507 ms
38,984 KB |
testcase_21 | AC | 807 ms
406,280 KB |
ソースコード
#include <cassert> #include <cmath> #include <algorithm> #include <iostream> #include <iomanip> #include <limits.h> #include <map> #include <queue> #include <set> #include <string.h> #include <vector> using namespace std; typedef long long ll; const int DY[4] = {-1, 0, 1, 0}; const int DX[4] = {0, 1, 0, -1}; const int MAX_H = 3000; const int MAX_W = 3000; int max_dist[MAX_H + 2][MAX_W + 2]; struct Node { int by; int bx; int y; int x; int dist; Node(int by = -1, int bx = -1, int y = -1, int x = -1, int dist = -1) { this->by = by; this->bx = bx; this->y = y; this->x = x; this->dist = dist; } bool operator>(const Node &n) const { return dist > n.dist; } }; int main() { int H, W; cin >> H >> W; queue<Node> pque; // priority_queue <Node, vector<Node>, greater<Node>> pque; memset(max_dist, -1, sizeof(max_dist)); int ans = 1; for (int y = 1; y <= H; ++y) { string row; cin >> row; for (int x = 1; x <= W; ++x) { if (row[x - 1] == '.') { pque.push(Node(y, x, y, x, 0)); } } } for (int y = 0; y < H + 2; ++y) { for (int x = 0; x < W + 2; ++x) { if (y == 0 || x == 0 || y == H + 1 || x == W + 1) { pque.push(Node(y, x, y, x, 0)); } } } while (not pque.empty()) { Node node = pque.front(); pque.pop(); if (max_dist[node.y][node.x] != -1) continue; max_dist[node.y][node.x] = node.dist; ans = max(ans, node.dist); for (int direct = 0; direct < 4; ++direct) { int ny = node.y + DY[direct]; int nx = node.x + DX[direct]; if (ny < 0 || H + 2 <= ny || nx < 0 || W + 2 <= nx) continue; int nd = max(abs(ny - node.by), abs(nx - node.bx)); if (max_dist[ny][nx] != -1) continue; pque.push(Node(node.by, node.bx, ny, nx, nd)); } } cout << ans << endl; return 0; }