結果

問題 No.402 最も海から遠い場所
ユーザー sahiyasahiya
提出日時 2022-03-29 23:52:38
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 622 ms / 3,000 ms
コード長 2,621 bytes
コンパイル時間 1,889 ms
コンパイル使用メモリ 144,064 KB
実行使用メモリ 115,224 KB
最終ジャッジ日時 2024-04-27 04:05:48
合計ジャッジ時間 5,608 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 3 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 3 ms
6,944 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 3 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 7 ms
8,168 KB
testcase_14 AC 4 ms
8,292 KB
testcase_15 AC 26 ms
13,172 KB
testcase_16 AC 23 ms
15,488 KB
testcase_17 AC 400 ms
50,412 KB
testcase_18 AC 622 ms
51,612 KB
testcase_19 AC 330 ms
115,224 KB
testcase_20 AC 373 ms
47,600 KB
testcase_21 AC 315 ms
84,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx2")
#pragma GCC optimize("unroll-loops")

#include <algorithm>
#include <bitset>
#include <climits>
#include <cmath>
#include <cstring>
#include <deque>
#include <forward_list>
#include <functional>
#include <iomanip>
#include <iostream>
#include <list>
#include <map>
#include <queue>
#include <set>
#include <stack>
#include <string>
#include <unordered_map>
#include <unordered_set>
#include <utility>
#include <vector>

#define ALL(x) (x).begin(), (x).end()

using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
struct edge {
    int to, cost, id;
};
const double PI = 3.14159265358979323846;
const double PI2 = PI * 2.0;
const double EPS = 1E-09;
const ll MOD = 1E+09 + 7; // =998244353;
const ll INFL = 1E18;
const int INFI = 1E09;
const int MAX_N = 3E+03;

ll dx[4] = { -1, 1, 0, 0 }, dy[4] = { 0, 0, -1, 1 };

int H, W;

int d[MAX_N + 2][MAX_N + 2];
bool g[MAX_N + 2][MAX_N + 2];

int main()
{
    ios::sync_with_stdio(false);
    cin.tie(nullptr);

    cin >> H >> W;

    queue<pii> que;

    fill(d[0], d[H + 2], INFI);

    for (int i = 1; i <= H; i++) {
        string s;
        cin >> s;
        for (int j = 1; j <= W; ++j) {
            if (s[j - 1] == '.') {
                que.push({ i, j });
                d[i][j] = 0;
            } else {
                g[i][j] = true;
            }
        }
    }
    for (int i = 0; i <= H + 1; ++i) {
        que.push({ i, 0 });
        que.push({ i, W + 1 });
        d[i][0] = 0;
        d[i][W + 1] = 0;
    }
    for (int j = 1; j <= W; ++j) {
        que.push({ 0, j });
        que.push({ H + 1, j });
        d[0][j] = 0;
        d[H + 1][j] = 0;
    }

    while (!que.empty()) {
        pii p = que.front();
        que.pop();
        int i = p.first;
        int j = p.second;
        for (int ii = -1; ii <= 1; ++ii) {
            for (int jj = -1; jj <= 1; ++jj) {
                int ni = i + ii, nj = j + jj;
                if (ni >= 1 && ni <= H && nj >= 1 && nj <= W && g[ni][nj] && d[ni][nj] == INFI) {
                    d[ni][nj] = d[i][j] + 1;
                    que.push({ ni, nj });
                }
            }
        }
    }

    int ans = 0;
    for (int i = 1; i <= H; ++i) {
        for (int j = 1; j <= W; ++j) {
            if (g[i][j])
                ans = max(ans, d[i][j]);
        }
    }

    // for (int i = 0; i < N; i++) {
    //     for (int j = 0; j < N; j++) {
    //         cout << "i = " << i << ", j = " << j << ", dp = " << dp[i][j] << "\n";
    //     }
    // }

    cout << ans << "\n";

    return 0;
}
0