結果

問題 No.157 2つの空洞
ユーザー yuustiyuusti
提出日時 2015-03-13 02:00:10
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 60 ms / 2,000 ms
コード長 1,795 bytes
コンパイル時間 799 ms
コンパイル使用メモリ 90,192 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-11 08:14:10
合計ジャッジ時間 2,588 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 2 ms
4,376 KB
testcase_05 AC 2 ms
4,376 KB
testcase_06 AC 4 ms
4,380 KB
testcase_07 AC 2 ms
4,376 KB
testcase_08 AC 2 ms
4,380 KB
testcase_09 AC 3 ms
4,376 KB
testcase_10 AC 2 ms
4,376 KB
testcase_11 AC 6 ms
4,376 KB
testcase_12 AC 14 ms
4,380 KB
testcase_13 AC 24 ms
4,376 KB
testcase_14 AC 31 ms
4,380 KB
testcase_15 AC 44 ms
4,376 KB
testcase_16 AC 60 ms
4,376 KB
testcase_17 AC 59 ms
4,376 KB
testcase_18 AC 59 ms
4,376 KB
testcase_19 AC 60 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <string>
#include <sstream>
#include <cstring>
#include <cstdio>
#include <cstdlib>
#include <cmath>
#include <queue>
#include <stack>
#include <map>
#include <set>
#include <numeric>
#include <cctype>
#include <tuple>
#include <array>
#include <climits>
#include <bitset>
#include <cassert>
#include <unordered_map>

#ifdef _MSC_VER
#include <agents.h>
#endif

#define FOR(i, a, b) for(int i = (a); i < (int)(b); ++i)
#define rep(i, n) FOR(i, 0, n)
#define ALL(v) v.begin(), v.end()
#define REV(v) v.rbegin(), v.rend()
#define MEMSET(v, s) memset(v, s, sizeof(v))
#define UNIQUE(v) (v).erase(unique(ALL(v)), (v).end())
#define MP make_pair
#define MT make_tuple

using namespace std;

typedef long long ll;
typedef long double ld;
typedef pair<int, int> P;

const int N = 404;
int dist[N][N];

int w, h;
int f(int i, int j){
	return i*w + j;
}

P g(int x){
	return MP(x / w, x % w);
}

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

int main(){
	cin.tie(0);
	ios::sync_with_stdio(false);
	cout.setf(ios::fixed);
	cout.precision(20);

	cin >> w >> h;
	vector<string> a(h);
	rep(i, h) cin >> a[i];

	int n = w*h;
	rep(i, n) rep(j, n) dist[i][j] = i == j ? 0 : 1e9;

	rep(i, h) rep(j, w){
		rep(d, 4){
			int ni = i + dy[d], nj = j + dx[d];
			if (ni < 0 || ni >= h || nj < 0 || nj >= w) continue;
			int c = a[i][j] == '#' || a[ni][nj] == '#';
			int x = f(i, j), y = f(ni, nj);
			dist[x][y] = dist[y][x] = c;
		}
	}

	rep(i, n) rep(j, n) rep(k, n) dist[j][k] = min(dist[j][k], dist[j][i] + dist[i][k]);

	int ans = 1e9;
	rep(i, h) rep(j, w) rep(k, h) rep(l, w){
		if (a[i][j] == '#' || a[k][l] == '#') continue;
		int x = f(i, j), y = f(k, l);
		if (dist[x][y]) ans = min(ans, dist[x][y] - 1);
	}
	cout << ans << endl;
}
0