結果

問題 No.402 最も海から遠い場所
ユーザー pekempeypekempey
提出日時 2016-11-22 18:29:23
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 58 ms / 3,000 ms
コード長 717 bytes
コンパイル時間 2,341 ms
コンパイル使用メモリ 179,428 KB
実行使用メモリ 29,836 KB
最終ジャッジ日時 2024-05-05 12:21:37
合計ジャッジ時間 3,771 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 3 ms
5,376 KB
testcase_14 AC 3 ms
5,376 KB
testcase_15 AC 6 ms
7,296 KB
testcase_16 AC 7 ms
8,320 KB
testcase_17 AC 45 ms
19,968 KB
testcase_18 AC 58 ms
29,696 KB
testcase_19 AC 40 ms
29,836 KB
testcase_20 AC 57 ms
29,824 KB
testcase_21 AC 44 ms
29,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

short h, w, dp[3001][3001];
char g[3001][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;
    for (int i = 1; i <= h; i++) get_str(g[i] + 1);
    short ans = 0;
    for (int i = 1; i <= h; i++) for (int j = 1; j <= w; j++) {
        dp[i][j] = g[i][j] == '.' ? 0 : min({ dp[i - 1][j], dp[i][j - 1], dp[i - 1][j - 1] }) + 1;
        ans = max(ans, dp[i][j]);
    }
    cout << (ans + 1) / 2 << endl;
}
0