結果

問題 No.2695 Warp Zone
ユーザー 00 Sakuda00 Sakuda
提出日時 2024-03-30 17:45:04
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 1,319 bytes
コンパイル時間 2,171 ms
コンパイル使用メモリ 214,964 KB
実行使用メモリ 67,840 KB
最終ジャッジ日時 2024-09-30 17:37:39
合計ジャッジ時間 3,942 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 88 ms
67,840 KB
testcase_04 AC 86 ms
66,560 KB
testcase_05 AC 84 ms
66,688 KB
testcase_06 AC 87 ms
67,456 KB
testcase_07 AC 90 ms
67,840 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 34 ms
28,032 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 11 ms
11,520 KB
testcase_12 AC 44 ms
38,144 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 56 ms
47,872 KB
testcase_15 AC 29 ms
25,216 KB
testcase_16 AC 9 ms
9,728 KB
testcase_17 AC 16 ms
16,384 KB
testcase_18 AC 70 ms
57,984 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 64 ms
51,840 KB
testcase_21 AC 56 ms
46,848 KB
testcase_22 AC 22 ms
19,456 KB
testcase_23 AC 44 ms
37,760 KB
testcase_24 AC 1 ms
5,248 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 1 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/segtree>
using namespace atcoder;
using namespace std;
using ll = long long;
struct Edge {
	int to;
	ll cost;
};
using Graph = vector<vector<Edge>>;
ll INF = (1LL << 60);
void DJK(int s, vector<ll>& dist, Graph& G) {
	dist[s] = 0;
	priority_queue<pair<ll, int>, vector<pair<ll,int>>, greater<pair<ll, int>>> pq;
	int N = G.size();
	for (int v = 0;v < N;v++) pq.emplace(dist[v], v);
	while (!pq.empty()) {
		int v = pq.top().second;ll dis = pq.top().first;pq.pop();
		if (dist[v] < dis) continue;
		for (auto nv : G[v]) {
			ll cost = nv.cost + dis;
			if (cost < dist[nv.to]) {
				dist[nv.to] = cost;
				pq.emplace(dist[nv.to], nv.to);
			}
		}
	}
}
int main() {
	ll H, W;int N;cin >> H >> W >> N;
	int K = (2 * N) + 2;
	vector<pair<ll, ll>> pos;
	pos.push_back({1, 1});
	pos.push_back({H, W});
	Graph G(K);
	for (int i = 0;i < N;i++) {
		ll a, b, c,d;cin >> a >> b >> c >> d;
		pos.push_back({a,b});
		int x = pos.size() - 1;
		pos.push_back({c, d});
		int y = pos.size() - 1;
		G[x].push_back({y, 1});
	}
	for (int i = 0;i < K;i++) for (int j = 0;j < K;j++) {
		if (i == j) continue;
		ll dist = abs(pos[i].first - pos[j].first) + abs(pos[i].second - pos[j].second);
		G[i].push_back({j, dist});
	}
	vector<ll> dist(K, INF);
	DJK(0, dist, G);
	cout << dist[1] << endl;
}

0