結果

問題 No.1473 おでぶなおばけさん
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-10-18 15:38:49
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,104 bytes
コンパイル時間 2,578 ms
コンパイル使用メモリ 217,948 KB
実行使用メモリ 9,984 KB
最終ジャッジ日時 2024-10-18 15:38:58
合計ジャッジ時間 8,491 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 92 ms
9,984 KB
testcase_03 WA -
testcase_04 AC 45 ms
6,912 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 87 ms
9,856 KB
testcase_08 WA -
testcase_09 AC 105 ms
9,984 KB
testcase_10 AC 32 ms
6,816 KB
testcase_11 WA -
testcase_12 AC 32 ms
6,820 KB
testcase_13 AC 20 ms
6,820 KB
testcase_14 AC 14 ms
6,820 KB
testcase_15 AC 27 ms
6,816 KB
testcase_16 AC 30 ms
6,816 KB
testcase_17 AC 4 ms
6,820 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 67 ms
7,796 KB
testcase_22 AC 77 ms
9,216 KB
testcase_23 AC 56 ms
8,320 KB
testcase_24 AC 69 ms
8,192 KB
testcase_25 AC 88 ms
9,088 KB
testcase_26 AC 92 ms
8,960 KB
testcase_27 AC 33 ms
6,820 KB
testcase_28 AC 104 ms
9,984 KB
testcase_29 AC 68 ms
7,808 KB
testcase_30 AC 80 ms
8,696 KB
testcase_31 AC 86 ms
9,984 KB
testcase_32 WA -
testcase_33 AC 66 ms
8,448 KB
testcase_34 AC 33 ms
6,820 KB
testcase_35 AC 36 ms
6,820 KB
testcase_36 AC 65 ms
6,816 KB
testcase_37 AC 69 ms
7,936 KB
testcase_38 AC 14 ms
6,820 KB
testcase_39 AC 29 ms
6,820 KB
testcase_40 AC 30 ms
6,816 KB
testcase_41 AC 27 ms
6,816 KB
testcase_42 AC 27 ms
6,820 KB
testcase_43 AC 59 ms
9,144 KB
testcase_44 AC 58 ms
9,016 KB
testcase_45 AC 58 ms
9,020 KB
testcase_46 AC 43 ms
7,552 KB
testcase_47 AC 56 ms
8,448 KB
testcase_48 AC 54 ms
8,192 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 n, m;
	cin >> n >> m;
	vector<vector<pair<int, int>>> g(n);
	for (int i = 0; i < m; i++) {
		int s, t, d;
		cin >> s >> t >> d;
		s--, t--;
		g[s].push_back({t, d});
		g[t].push_back({s, d});
	}
	const int INF = 1e9;
	vector<pair<int, int>> dist(n, {0, 1e9});
	vector<bool> vis(n, false);
	dist[0] = {1e9, 0};
	using tiii = tuple<int, int, int>;
	priority_queue<tiii, vector<tiii>, greater<tiii>> pq;
	pq.push({-1e9, 0, 0});
	while (!pq.empty()) {
		auto [ma, d, u] = pq.top();
		pq.pop();
		if (vis[u]) {
			continue;
		}
		vis[u] = true;
		ma = -ma;
		for (auto [v, w] : g[u]) {
			int ma_new = min(ma, w);
			if (dist[v].first < ma_new) {
				dist[v] = {ma_new, dist[u].second + 1};
				pq.push({-ma_new, dist[v].second, v});
			} else if (dist[v].first == ma_new) {
				dist[v].second = min(dist[v].second, dist[u].second + 1);
				pq.push({-ma_new, dist[v].second, v});
			}
		}
	}
	cout << dist[n - 1].first << " " << dist[n - 1].second << endl;
}
0