結果

問題 No.402 最も海から遠い場所
ユーザー ctyl_0ctyl_0
提出日時 2016-07-23 00:08:38
言語 C++11
(gcc 11.4.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 2,033 bytes
コンパイル時間 1,353 ms
コンパイル使用メモリ 98,844 KB
実行使用メモリ 470,820 KB
最終ジャッジ日時 2023-08-06 10:41:19
合計ジャッジ時間 13,568 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 1 ms
4,384 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 AC 2 ms
4,380 KB
testcase_05 AC 2 ms
4,380 KB
testcase_06 AC 1 ms
4,376 KB
testcase_07 AC 2 ms
4,380 KB
testcase_08 AC 2 ms
4,376 KB
testcase_09 AC 1 ms
4,376 KB
testcase_10 AC 1 ms
4,380 KB
testcase_11 AC 2 ms
4,380 KB
testcase_12 AC 1 ms
4,380 KB
testcase_13 AC 13 ms
5,420 KB
testcase_14 AC 6 ms
4,376 KB
testcase_15 AC 69 ms
15,188 KB
testcase_16 AC 117 ms
21,016 KB
testcase_17 AC 1,361 ms
227,960 KB
testcase_18 AC 2,613 ms
94,344 KB
testcase_19 AC 2,636 ms
470,676 KB
testcase_20 AC 1,374 ms
49,268 KB
testcase_21 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <iomanip>
#include <vector>
#include <algorithm>
#include <numeric>
#include <functional>
#include <cmath>
#include <queue>
#include <stack>
#include <set>
#include <map>
#include <sstream>
#include <string>
#define repd(i,a,b) for (int i=(int)(a);i<(int)(b);i++)
#define rep(i,n) repd(i,0,n)
#define all(x) (x).begin(),(x).end()
#define mod 1000000007
#define inf 2000000007
#define mp make_pair
#define pb push_back
typedef long long ll;
using namespace std;
template <typename T>
inline void output(T a, int p) {
    if(p) cout << fixed << setprecision(p)  << a << "\n";
    else cout << a << "\n";
}
// end of template

int dx[8] = {1, 1, 1, 0, 0, -1, -1, -1};
int dy[8] = {1, 0, -1, 1, -1, 1, 0, -1};

int m(int y, int x){
    return 3002 * y + x;
}

int main() {
    cin.tie(0);
    ios::sync_with_stdio(0);
    // source code
    int H, W;
    cin >> H >> W;
    vector<string> A(H);
    rep(i, H) cin >> A[i];
    vector<vector<int>> B(H + 2, vector<int>(W + 2, -1));
    
    set<int> st;
    rep(i, H + 2){
        B[i][0] = 0, st.insert(m(i, 0));
        B[i][W + 1] = 0, st.insert(m(i, W + 1));
    }
    rep(i, W + 2){
        B[0][i] = 0, st.insert(m(0, i));
        B[H + 1][i] = 0, st.insert(m(H + 1, i));
    }
    rep(i, H) rep(j, W){
        if(A[i][j] == '.') B[i + 1][j + 1] = 0, st.insert(m(i + 1, j + 1));
    }
    
    int cur = 0;
    set<int> tmp;
    while(!st.empty()){
        cur++;
        tmp.clear();
        for(auto itr = st.begin(); itr != st.end(); ++itr) {
            int y = (*itr) / 3002, x = (*itr) % 3002;
//            int y = (*itr).first, x = (*itr).second;
            rep(i, 8){
                if(y + dy[i] >= 0 && y + dy[i] < H + 2 && x + dx[i] >= 0 && x + dx[i] < W + 2 && B[y + dy[i]][x + dx[i]] == -1){
                        B[y + dy[i]][x + dx[i]] = cur;
                        tmp.insert(m(y + dy[i], x + dx[i]));
                    
                }
            }
        }
        st = tmp;
    }
    
    output(cur - 1, 0);
    return 0;
}
0