結果
問題 | No.402 最も海から遠い場所 |
ユーザー | mint6421 |
提出日時 | 2019-08-21 23:57:54 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,820 bytes |
コンパイル時間 | 1,640 ms |
コンパイル使用メモリ | 174,288 KB |
実行使用メモリ | 158,832 KB |
最終ジャッジ日時 | 2024-10-10 05:29:24 |
合計ジャッジ時間 | 8,346 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | RE | - |
testcase_02 | AC | 3 ms
5,248 KB |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | AC | 3 ms
5,248 KB |
testcase_09 | AC | 3 ms
5,248 KB |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | AC | 297 ms
12,672 KB |
testcase_20 | RE | - |
testcase_21 | AC | 416 ms
158,832 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; #define inf INT_MAX #define INF LLONG_MAX #define ll long long #define ull unsigned long long #define M (int)(1e9+7) #define P pair<int,int> #define PLL pair<ll,ll> #define FOR(i,m,n) for(int i=(int)m;i<(int)n;i++) #define RFOR(i,m,n) for(int i=(int)m;i>=(int)n;i--) #define rep(i,n) FOR(i,0,n) #define rrep(i,n) RFOR(i,n,0) #define all(a) a.begin(),a.end() #define IN(a,n) rep(i,n){ cin>>a[i]; } const int vx[4] = {0,1,0,-1}; const int vy[4] = {1,0,-1,0}; #define PI 3.14159265 #define F first #define S second #define PB push_back #define EB emplace_back #define int ll #define vi vector<int> char s[3100][3100]; int d[3100][3100]; int ans=0; signed main(){ cin.tie(0); ios::sync_with_stdio(false); int h,w; cin>>h>>w; rep(i,h){ cin>>s[i]; } queue<P> q; FOR(i,-1,h+1){ FOR(j,-1,w+1){ if(0<=i&&i<h&&0<=j&&j<w) continue; q.push(P(i,j)); } } rep(i,h){ rep(j,w){ if(s[i][j]=='.'){ FOR(x,-1,2){ FOR(y,-1,2){ //if(!x&&!y) continue; if(!(0<=i+y&&i+y<h&&0<=j+x&&j+x<w)) continue; if(d[y+i][x+j]) continue; if(s[y+i][x+j]=='.') continue; d[y+i][x+j]=1; ans=1; q.push(P(y+i,x+j)); } } } } } //cout<<q.size()<<endl; while(!q.empty()){ P p=q.front(); q.pop(); FOR(i,-1,2){ FOR(j,-1,2){ int y=i+p.F,x=j+p.S; if(!i&&!j) continue; if(!(0<=x&&x<w&&0<=y&&y<h)) continue; if(d[y][x]) continue; if(s[y][x]=='.') continue; d[y][x]=d[p.F][p.S]+1; ans=max(ans,d[y][x]); q.push(P(y,x)); } } } /* rep(i,h){ rep(j,w){ cout<<d[i][j]<<' '; } cout<<endl; } */ cout<<ans<<endl; }