結果
問題 | No.402 最も海から遠い場所 |
ユーザー | chocorusk |
提出日時 | 2019-07-06 19:15:40 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 2,043 ms / 3,000 ms |
コード長 | 1,889 bytes |
コンパイル時間 | 835 ms |
コンパイル使用メモリ | 105,580 KB |
実行使用メモリ | 227,652 KB |
最終ジャッジ日時 | 2024-10-01 06:54:14 |
合計ジャッジ時間 | 10,629 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 109 ms
144,512 KB |
testcase_01 | AC | 106 ms
144,640 KB |
testcase_02 | AC | 109 ms
144,768 KB |
testcase_03 | AC | 109 ms
144,512 KB |
testcase_04 | AC | 102 ms
144,640 KB |
testcase_05 | AC | 102 ms
144,512 KB |
testcase_06 | AC | 105 ms
144,512 KB |
testcase_07 | AC | 102 ms
144,640 KB |
testcase_08 | AC | 103 ms
144,640 KB |
testcase_09 | AC | 104 ms
144,512 KB |
testcase_10 | AC | 103 ms
144,640 KB |
testcase_11 | AC | 103 ms
144,512 KB |
testcase_12 | AC | 102 ms
144,640 KB |
testcase_13 | AC | 108 ms
145,408 KB |
testcase_14 | AC | 104 ms
145,408 KB |
testcase_15 | AC | 127 ms
147,840 KB |
testcase_16 | AC | 145 ms
148,280 KB |
testcase_17 | AC | 720 ms
183,908 KB |
testcase_18 | AC | 2,043 ms
157,196 KB |
testcase_19 | AC | 1,326 ms
227,652 KB |
testcase_20 | AC | 1,144 ms
153,592 KB |
testcase_21 | AC | 1,254 ms
227,560 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:36:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 36 | scanf("%s", s[i]+1); | ~~~~~^~~~~~~~~~~~~~
ソースコード
#include <cstdio> #include <cstring> #include <iostream> #include <string> #include <cmath> #include <bitset> #include <vector> #include <map> #include <set> #include <queue> #include <deque> #include <algorithm> #include <complex> #include <unordered_map> #include <unordered_set> #include <random> #include <cassert> #include <fstream> #define popcount __builtin_popcount using namespace std; typedef long long int ll; typedef pair<int, int> P; const int INF=1e8; char s[3010][3010]; int h, w; int dx[4]={1, 0, -1, 0}, dy[4]={0, 1, 0, -1}; bool check(int i, int j){ int x=(i+j-w+1)/2, y=(i-j+w-1)/2; if(x<0 || x>=h || y<0 || y>=w) return false; return true; } int main() { cin>>h>>w; for(int i=1; i<=h; i++){ scanf("%s", s[i]+1); s[i][0]='.'; s[i][w+1]='.'; } for(int i=0; i<w+2; i++) s[0][i]=s[h+1][i]='.'; h+=2, w+=2; int d[6010][6010]; for(int i=0; i<h+w; i++){ for(int j=0; j<h+w; j++){ d[i][j]=INF; } } queue<P> que; for(int i=0; i<h; i++){ for(int j=0; j<w; j++){ if(s[i][j]=='.'){ d[i+j][i-j+w-1]=0; que.push({i+j, i-j+w-1}); } } } while(!que.empty()){ P p=que.front(); que.pop(); int x=p.first, y=p.second; for(int k=0; k<4; k++){ int x1=x+dx[k], y1=y+dy[k]; if(!check(x1, y1)) continue; if(d[x1][y1]>d[x][y]+1){ d[x1][y1]=d[x][y]+1; que.push({x1, y1}); } } } int ans=0; for(int i=0; i<h+w; i++){ for(int j=0; j<h+w; j++){ if((i+j+w-1)&1) continue; int x=(i+j-w+1)/2, y=(i-j+w-1)/2; if(x<=0 || x>=h-1 || y<=0 || y>=w-1) continue; ans=max(ans, d[i][j]/2); } } cout<<ans<<endl; return 0; }