結果
問題 | No.402 最も海から遠い場所 |
ユーザー | uenoku |
提出日時 | 2016-08-31 04:36:00 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,457 bytes |
コンパイル時間 | 1,072 ms |
コンパイル使用メモリ | 90,724 KB |
実行使用メモリ | 129,748 KB |
最終ジャッジ日時 | 2024-11-14 12:43:43 |
合計ジャッジ時間 | 7,506 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | AC | 30 ms
20,992 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 833 ms
27,008 KB |
testcase_19 | WA | - |
testcase_20 | AC | 783 ms
21,248 KB |
testcase_21 | WA | - |
ソースコード
#include <iostream> #include <string> #include <vector> #include <algorithm> #include <cstdio> #include <queue> #include "math.h" #include <complex> #include <iomanip> #include <map> #define ifor(i,a,b) for (int i=(a);i<(b);i++) #define rfor(i,a,b) for (int i=(b)-1;i>=(a);i--) #define rep(i,n) for (int i=0;i<(n);i++) #define rrep(i,n) for (int i=(n)-1;i>=0;i--) using namespace std; typedef long double ld; typedef long long int lli; typedef pair<int,int> P; const double eps = 1e-11; int vex[4]={1,0,-1,0}; int vey[4]={0,1,0,-1}; typedef vector<double> Vec; typedef vector<int> vec; typedef vector<Vec> MAT; typedef vector<vec> mat; lli MOD=1000000007; int main(){ int H,W; cin >> H >> W; bool fi[3004][3004]; bool dis [3004][3004]; queue<pair<P,int> > que; rep(i,3004){ rep(j,3004){ if(j==W+1||j==0||i==0||i==H+1)que.push(make_pair(P(i,j),0)); } } char c; rep(i,H)rep(j,W){ cin>>c; if(c=='#')fi[i+1][j+1]=true; if(c=='.')que.push(make_pair(P(i+1,j+1),0)); } int ans = 0; while(!que.empty()){ P p= que.front().first; int d = que.front().second; ans = max(ans,que.front().second); que.pop(); for(int i = -1;i<=1;i++){ for(int j = -1;j<=1;j++){ if(!(i==0&&j==0)&&!dis[p.first+i][p.second+j]&&fi[p.first+i][p.second+j]){ dis[p.first+i][p.second+j]=true; que.push(make_pair(P(i+p.first,j+p.second),d+1)); } } } } cout<<ans<<endl; }