結果
問題 | No.402 最も海から遠い場所 |
ユーザー | hiyokko2 |
提出日時 | 2016-07-31 17:19:59 |
言語 | C++11 (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,015 bytes |
コンパイル時間 | 1,453 ms |
コンパイル使用メモリ | 158,984 KB |
実行使用メモリ | 47,604 KB |
最終ジャッジ日時 | 2024-11-06 21:28:18 |
合計ジャッジ時間 | 3,526 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:80:18: warning: format ‘%d’ expects argument of type ‘int’, but argument 2 has type ‘double’ [-Wformat=] 80 | printf("%d\n", (getLargestSquare(H, W) + 1) / 2.0); | ~^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | | | | int double | %f
ソースコード
#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.0); }