結果

問題 No.807 umg tours
ユーザー TlapesiumTlapesium
提出日時 2019-10-31 21:40:20
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 534 ms / 4,000 ms
コード長 2,154 bytes
コンパイル時間 3,155 ms
コンパイル使用メモリ 231,664 KB
実行使用メモリ 58,312 KB
最終ジャッジ日時 2024-05-03 00:04:04
合計ジャッジ時間 9,464 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 246 ms
42,304 KB
testcase_12 AC 287 ms
34,564 KB
testcase_13 AC 409 ms
47,072 KB
testcase_14 AC 147 ms
22,248 KB
testcase_15 AC 124 ms
18,572 KB
testcase_16 AC 422 ms
48,788 KB
testcase_17 AC 498 ms
58,240 KB
testcase_18 AC 524 ms
58,312 KB
testcase_19 AC 521 ms
56,736 KB
testcase_20 AC 316 ms
32,156 KB
testcase_21 AC 307 ms
33,288 KB
testcase_22 AC 118 ms
16,408 KB
testcase_23 AC 87 ms
13,520 KB
testcase_24 AC 254 ms
43,324 KB
testcase_25 AC 534 ms
56,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("O3")
#pragma GCC optimize ("unroll-loops")
#pragma GCC target ("avx")
#include <bits/stdc++.h>
constexpr int INF = 2147483647;
constexpr long long int INF_LL = 9223372036854775807;
constexpr int MOD = 1000000007;
using namespace std;
typedef long long int ll;
typedef unsigned long long int ull;

struct edge {
	ll to;
	ll cost;
};
typedef pair < ll, ll > P;

template<typename T > class RadixHeapInt64 {
private:
	vector< pair<ull,T> > v[65];
	ll last, size;
	int bsr(ull x) {
		if (x == 0)return -1;
		return 64 - __builtin_clzll(x);
	}
public:
	RadixHeapInt64() {
		last = size = 0;
	}
	bool empty() {
		return size == 0;
	}
	//p = {priority,value}
	void push(ull priority, const T& value) {
		size++;
		v[bsr(priority ^ last) + 1].emplace_back(priority,value);
	}
	pair<ull,T> pop() {
		if (!v[0].size()) {
			int i = 1;
			while (!v[i].size())i++;
			last = (*min_element(v[i].begin(), v[i].end())).first;
			for (int j = 0; j < v[i].size(); j++) {
				v[bsr(v[i][j].first ^ last) + 1].push_back(v[i][j]);
			}
			v[i].clear();
		}
		size--;
		auto ret = v[0].back();
		v[0].pop_back();
		return ret;
	}
};

void dijkstra(int s, vector<vector<edge>>& g, vector<ll> &d) {
	RadixHeapInt64<ll> q;
	d = vector<ll>(g.size(), INF_LL);
	d[s] = 0;
	q.push(0, s);

	while (!q.empty()) {
		P p = q.pop();
		ll v = p.second;
		if (d[v] < p.first)continue;
		for (int i = 0; i < g[v].size(); i++) {
			edge e = g[v][i];
			if (d[e.to] > d[v] + e.cost) {
				d[e.to] = d[v] + e.cost;
				q.push(d[e.to], e.to);
			}
		}
	}
}

int main() {
	cin.tie(0);
	ios::sync_with_stdio(false);

	int N, M;
	cin >> N >> M;
	vector<vector<edge>> g1(N),g2(N*2);
	for (int i = 0; i < M; i++) {
		int a, b, c;
		cin >> a >> b >> c;
		a--; b--;
		g1[a].push_back({ b,c });
		g1[b].push_back({ a,c });
		g2[a].push_back({ b,c });
		g2[b].push_back({ a,c });
		g2[a].push_back({ b + N,0 });
		g2[b].push_back({ a + N,0 });
		g2[a + N].push_back({ b + N,c });
		g2[b + N].push_back({ a + N,c });
	}
	vector<ll> d1(N), d2(N * 2);
	dijkstra(0, g1, d1);
	dijkstra(0, g2, d2);
	for (int i = 0; i < N; i++) {
		cout << min(d1[i] + d2[i + N], d1[i] * 2) << endl;
	}
}
0