結果

問題 No.2695 Warp Zone
ユーザー Carpenters-CatCarpenters-Cat
提出日時 2024-03-22 23:07:04
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 986 bytes
コンパイル時間 2,299 ms
コンパイル使用メモリ 210,680 KB
実行使用メモリ 67,840 KB
最終ジャッジ日時 2024-09-30 12:24:35
合計ジャッジ時間 4,323 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 24
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
int main () {
	ll H, W; int N;
	cin >> H >> W >> N;
	std::vector<ll> X(N * 2 + 2), Y(N * 2 + 2);
	X[0] = Y[0] = 1;
	X[1] = W, Y[1] = H;
	using P = pair<ll, int>;
	vector<P> gr[2020];
	{
		ll d = H - 1 + W - 1;
		gr[0].emplace_back(d, 1);
		gr[1].emplace_back(d, 0);
	}
	for (int i = 2; i < N * 2 + 2; i ++) {
		cin >> Y[i] >> X[i];
		for (int j = 0; j < i; j ++) {
			ll d = abs(X[i] - X[j]) + abs(Y[i] - Y[j]);
			gr[j].emplace_back(d, i);
			gr[i].emplace_back(d, j);
		}
	}
	for (int i = 1; i <= N; i ++) {
		int p = i * 2, q = i * 2 + 1;
		gr[p].emplace_back(1, q);
	}
	priority_queue<P, vector<P>, greater<P>> pque;
	pque.emplace(0, 0);
	vector<ll> D(N * 2 + 2, (ll)1e18);
	D[0] = 0;
	while (!pque.empty()) {
		auto [l, u] = pque.top();
		pque.pop();
		if (l != D[u]) continue;
		for (auto& [d, v] : gr[u]) {
			if (D[v] > d + l) {
				D[v] = d + l;
				pque.emplace(D[v], v);
			}
		}
	}
	cout << D[1] << endl;
}
0