結果
問題 | No.402 最も海から遠い場所 |
ユーザー | latte0119 |
提出日時 | 2016-07-22 22:35:41 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 557 ms / 3,000 ms |
コード長 | 1,502 bytes |
コンパイル時間 | 1,590 ms |
コンパイル使用メモリ | 167,272 KB |
実行使用メモリ | 239,120 KB |
最終ジャッジ日時 | 2024-11-06 12:43:07 |
合計ジャッジ時間 | 5,080 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 22 ms
74,224 KB |
testcase_01 | AC | 22 ms
74,116 KB |
testcase_02 | AC | 23 ms
74,152 KB |
testcase_03 | AC | 23 ms
74,240 KB |
testcase_04 | AC | 21 ms
74,084 KB |
testcase_05 | AC | 22 ms
74,144 KB |
testcase_06 | AC | 23 ms
74,240 KB |
testcase_07 | AC | 22 ms
74,212 KB |
testcase_08 | AC | 21 ms
74,076 KB |
testcase_09 | AC | 21 ms
74,240 KB |
testcase_10 | AC | 21 ms
74,192 KB |
testcase_11 | AC | 21 ms
74,144 KB |
testcase_12 | AC | 22 ms
74,240 KB |
testcase_13 | AC | 24 ms
74,568 KB |
testcase_14 | AC | 22 ms
74,248 KB |
testcase_15 | AC | 34 ms
76,672 KB |
testcase_16 | AC | 41 ms
77,632 KB |
testcase_17 | AC | 237 ms
118,480 KB |
testcase_18 | AC | 557 ms
99,808 KB |
testcase_19 | AC | 461 ms
239,120 KB |
testcase_20 | AC | 379 ms
92,040 KB |
testcase_21 | AC | 387 ms
166,176 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; #define int long long typedef vector<int>vint; typedef pair<int,int>pint; typedef vector<pint>vpint; #define rep(i,n) for(int i=0;i<(n);i++) #define reps(i,f,n) for(int i=(f);i<(n);i++) #define all(v) (v).begin(),(v).end() #define each(it,v) for(__typeof((v).begin()) it=(v).begin();it!=(v).end();it++) #define pb push_back #define mp make_pair #define fi first #define se second template<typename A,typename B>inline void chmin(A &a,B b){if(a>b)a=b;} template<typename A,typename B>inline void chmax(A &a,B b){if(a<b)a=b;} int H,W; string fld[3010]; int dist[3010][3010]; signed main(){ cin.tie(0); ios_base::sync_with_stdio(false); cin>>H>>W; for(int i=1;i<=H;i++){ cin>>fld[i]; fld[i]="."+fld[i]+"."; } fld[0]=fld[H+1]=string(W+2,'.'); H+=2;W+=2; memset(dist,-1,sizeof(dist)); queue<pint>que; rep(i,H)rep(j,W){ if(fld[i][j]=='.'){ dist[i][j]=0; que.push(pint(i,j)); } } while(que.size()){ int y,x; tie(y,x)=que.front(); que.pop(); for(int dy=-1;dy<=1;dy++){ for(int dx=-1;dx<=1;dx++){ int ny=y+dy,nx=x+dx; if(ny<0||ny>=H||nx<0||nx>=W||dist[ny][nx]!=-1)continue; dist[ny][nx]=dist[y][x]+1; que.push(pint(ny,nx)); } } } int ma=0; rep(i,H)rep(j,W)chmax(ma,dist[i][j]); cout<<ma<<endl; return 0; }