結果

問題 No.2913 二次元距離空間
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-10-07 02:03:31
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 1,265 bytes
コンパイル時間 2,416 ms
コンパイル使用メモリ 217,036 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-07 02:03:35
合計ジャッジ時間 3,701 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 2 ms
6,816 KB
testcase_13 AC 2 ms
6,820 KB
testcase_14 AC 2 ms
6,820 KB
testcase_15 AC 2 ms
6,816 KB
testcase_16 AC 7 ms
6,816 KB
testcase_17 AC 7 ms
6,816 KB
testcase_18 AC 38 ms
6,820 KB
testcase_19 AC 38 ms
6,816 KB
testcase_20 AC 37 ms
6,816 KB
testcase_21 AC 5 ms
6,816 KB
testcase_22 AC 4 ms
6,820 KB
testcase_23 AC 38 ms
6,820 KB
testcase_24 AC 4 ms
6,816 KB
testcase_25 AC 39 ms
6,820 KB
testcase_26 AC 5 ms
6,820 KB
testcase_27 AC 37 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

void fast_io() {
	ios_base::sync_with_stdio(false);
	cin.tie(nullptr);
}

int main() {
	fast_io();
	int h, w;
	cin >> h >> w;
	vector<string> s(h);
	for (int i = 0; i < h; i++) {
		cin >> s[i];
	}
	const int INF = 1e9;
	int dx[] = {1, -1, 0, 0};
	int dy[] = {0, 0, 1, -1};
	auto is_in = [&](int x, int y) {
		return 0 <= x && x < h && 0 <= y && y < w;
	};
	vector<vector<pair<int, int>>> dist(h,
										vector<pair<int, int>>(w, {INF, INF}));
	dist[0][0] = {0, 0};
	using P = tuple<int, int, int, int>;
	priority_queue<P, vector<P>, greater<P>> pq;
	pq.push({0, 0, 0, 0});
	while (!pq.empty()) {
		auto [dh, dv, x, y] = pq.top();
		pq.pop();
		if (dist[x][y] < make_pair(dh, dv)) {
			continue;
		}
		for (int i = 0; i < 4; i++) {
			int nx = x + dx[i];
			int ny = y + dy[i];
			if (!is_in(nx, ny) || s[nx][ny] == '#') {
				continue;
			}
			int ndh = dh + (i >= 2);
			int ndv = dv + (i < 2);
			if (dist[nx][ny] > make_pair(ndh, ndv)) {
				dist[nx][ny] = {ndh, ndv};
				pq.push({ndh, ndv, nx, ny});
			}
		}
	}
	if (dist[h - 1][w - 1] == make_pair(INF, INF)) {
		cout << "No" << endl;
	} else {
		cout << "Yes" << endl;
		cout << dist[h - 1][w - 1].first << " " << dist[h - 1][w - 1].second
			 << endl;
	}
}
0