結果
問題 | No.402 最も海から遠い場所 |
ユーザー | Tawara |
提出日時 | 2016-07-22 19:23:05 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,082 bytes |
コンパイル時間 | 602 ms |
コンパイル使用メモリ | 56,732 KB |
実行使用メモリ | 85,020 KB |
最終ジャッジ日時 | 2024-11-06 12:30:38 |
合計ジャッジ時間 | 4,651 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,824 KB |
testcase_02 | AC | 3 ms
6,820 KB |
testcase_03 | AC | 3 ms
6,820 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
6,816 KB |
testcase_09 | AC | 2 ms
6,816 KB |
testcase_10 | WA | - |
testcase_11 | AC | 3 ms
6,816 KB |
testcase_12 | AC | 2 ms
6,816 KB |
testcase_13 | AC | 6 ms
10,592 KB |
testcase_14 | WA | - |
testcase_15 | AC | 16 ms
18,464 KB |
testcase_16 | WA | - |
testcase_17 | AC | 276 ms
62,152 KB |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:15:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 15 | scanf("%d %d",&H,&W); | ~~~~~^~~~~~~~~~~~~~~
ソースコード
#include <stdio.h> #include <iostream> #include <string> using namespace std; #define range(i,a,b) for(int i=(a); i < (b); i++) #define rep(i,n) range(i,0,n) string S[3000]; int VD[3002][3002],HD[3002][3002]; int main(){ int H,W,MAX,ans = 0,tmp; scanf("%d %d",&H,&W); if ((H < 1)||(H > 3000)) throw "H is bad!"; if ((W < 1)||(W > 3000)) throw "W is bad!"; rep(i,H){ cin >> S[i]; if(S[i].size() != W) throw "row size"; rep(j,W){ if((S[i][j] != '#') && (S[i][j] != '.')) throw "row element"; } } MAX = max(H,W); rep(i,H+2) rep(j,W+2){ if (i < 0 || i > H || j < 0 || j > H) VD[i][j] = HD[j][i] = 0; else VD[i][j] = HD[j][i] = S[i][j] == '.' ? 0 : MAX; } range(i,1,H+1) range(j,1,W+1) rep(k,3){ VD[i][j] = min(VD[i][j],VD[i-1][j-1+k]+1); VD[H+1-i][j] = min(VD[H+1-i][j],VD[H+2-i][j-1+k]+1); } range(j,1,W+1) range(i,1,H+1) rep(k,3){ HD[j][i] = min(HD[j][i],HD[j-1][i-1+k]+1); HD[W+1-j][i] = min(HD[W+1-j][i],HD[W+2-j][i-1+k]+1); } range(i,1,H+1) range(j,1,W+1){ ans = max(ans,min(VD[i][j],HD[j][i])); } printf("%d\n",ans); return 0; }