結果
問題 | No.402 最も海から遠い場所 |
ユーザー | hiyokko2 |
提出日時 | 2016-07-31 17:07:19 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,013 bytes |
コンパイル時間 | 1,313 ms |
コンパイル使用メモリ | 157,924 KB |
実行使用メモリ | 47,616 KB |
最終ジャッジ日時 | 2024-11-06 21:27:52 |
合計ジャッジ時間 | 3,438 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | AC | 2 ms
5,248 KB |
testcase_13 | AC | 4 ms
5,248 KB |
testcase_14 | AC | 3 ms
5,248 KB |
testcase_15 | AC | 11 ms
7,680 KB |
testcase_16 | AC | 13 ms
9,088 KB |
testcase_17 | AC | 147 ms
31,104 KB |
testcase_18 | AC | 224 ms
47,360 KB |
testcase_19 | AC | 202 ms
47,488 KB |
testcase_20 | WA | - |
testcase_21 | AC | 210 ms
47,360 KB |
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for(int i=0;i<n;i++) //#define int long long using namespace std; int H, W; char grid[3000][3000]; int dp[3000][3000]; int min3(int a, int b, int c) { return min(a, min(b, c)); } int getLargestSquare(int H, int W) { bool riku_exist = false; rep(i,H) { rep(j,W) { if (grid[i][j] == '.') { dp[i][j] = 0; } else if (grid[i][j] == '#') { dp[i][j] = 1; riku_exist = true; } } } if (!riku_exist) { return 0; } if (H == 1 || W == 1) { if (riku_exist) { return 1; } else { return 0; } } int maxWidth = 0; for (int i=1; i<H; i++) { for (int j=1; j<W; j++) { if (grid[i][j] == '.') { dp[i][j] = 0; } else { dp[i][j] = min3(dp[i - 1][j - 1], dp[i - 1][j], dp[i][j - 1]) + 1; maxWidth = max(maxWidth, dp[i][j]); } } } return maxWidth; } signed main() { //入力 cin >> H >> W; rep(i,H) { cin >> grid[i]; } printf("%d\n", (getLargestSquare(H, W) + 1) / 2); }