結果

問題 No.402 最も海から遠い場所
ユーザー pekempeypekempey
提出日時 2016-11-22 18:36:00
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 46 ms / 3,000 ms
コード長 725 bytes
コンパイル時間 2,230 ms
コンパイル使用メモリ 178,468 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-05 12:21:42
合計ジャッジ時間 3,501 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 4 ms
5,376 KB
testcase_16 AC 4 ms
5,376 KB
testcase_17 AC 35 ms
5,376 KB
testcase_18 AC 46 ms
5,376 KB
testcase_19 AC 30 ms
5,376 KB
testcase_20 AC 46 ms
5,376 KB
testcase_21 AC 33 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize ("O3")
#pragma GCC target ("avx")
#include <bits/stdc++.h>
using namespace std;
#define getchar getchar_unlocked

short h, w;
short dp0[3001], dp1[3001];
char g[3002];

void get_str(char *s) {
    int c, len = 0;
    while ((c = getchar()) < '!') if (c == EOF) abort();
    s[len++] = c;
    while ((c = getchar()) >= '!') s[len++] = c;
    s[len] = '\0';
}

int main() {
    cin >> h >> w;
    short ans = 0;
    for (int i = 0; i < h; i++) {
        get_str(g + 1);
        for (int j = 1; j <= w; j++) {
            dp1[j] = g[j] == '.' ? 0 : min({ dp0[j], dp1[j - 1], dp0[j - 1] }) + 1;
            ans = max(ans, dp1[j]);
        }
        swap(dp0, dp1);
    }
    cout << (ans + 1) / 2 << endl;
}
0