結果

問題 No.1473 おでぶなおばけさん
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-10-18 15:42:25
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 149 ms / 2,000 ms
コード長 902 bytes
コンパイル時間 2,579 ms
コンパイル使用メモリ 210,880 KB
実行使用メモリ 9,680 KB
最終ジャッジ日時 2024-10-18 15:42:33
合計ジャッジ時間 8,218 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 129 ms
9,308 KB
testcase_03 AC 79 ms
8,520 KB
testcase_04 AC 68 ms
6,816 KB
testcase_05 AC 29 ms
6,820 KB
testcase_06 AC 127 ms
8,696 KB
testcase_07 AC 107 ms
9,664 KB
testcase_08 AC 146 ms
9,680 KB
testcase_09 AC 94 ms
9,676 KB
testcase_10 AC 37 ms
6,816 KB
testcase_11 AC 41 ms
6,820 KB
testcase_12 AC 37 ms
6,820 KB
testcase_13 AC 25 ms
6,816 KB
testcase_14 AC 18 ms
6,816 KB
testcase_15 AC 34 ms
6,820 KB
testcase_16 AC 36 ms
6,816 KB
testcase_17 AC 5 ms
6,816 KB
testcase_18 AC 6 ms
6,820 KB
testcase_19 AC 42 ms
6,816 KB
testcase_20 AC 61 ms
7,928 KB
testcase_21 AC 73 ms
6,912 KB
testcase_22 AC 52 ms
8,512 KB
testcase_23 AC 44 ms
8,000 KB
testcase_24 AC 41 ms
7,736 KB
testcase_25 AC 146 ms
8,280 KB
testcase_26 AC 149 ms
8,192 KB
testcase_27 AC 38 ms
6,824 KB
testcase_28 AC 121 ms
9,552 KB
testcase_29 AC 73 ms
7,168 KB
testcase_30 AC 102 ms
7,808 KB
testcase_31 AC 82 ms
9,488 KB
testcase_32 AC 85 ms
8,888 KB
testcase_33 AC 59 ms
7,808 KB
testcase_34 AC 35 ms
6,816 KB
testcase_35 AC 32 ms
6,816 KB
testcase_36 AC 58 ms
6,816 KB
testcase_37 AC 79 ms
7,580 KB
testcase_38 AC 14 ms
6,816 KB
testcase_39 AC 36 ms
6,816 KB
testcase_40 AC 35 ms
6,816 KB
testcase_41 AC 35 ms
6,816 KB
testcase_42 AC 35 ms
6,816 KB
testcase_43 AC 42 ms
7,044 KB
testcase_44 AC 42 ms
7,168 KB
testcase_45 AC 42 ms
7,164 KB
testcase_46 AC 91 ms
7,380 KB
testcase_47 AC 78 ms
8,316 KB
testcase_48 AC 75 ms
7,896 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;
	int ok = 0, ng = 1e9 + 5;
	int ans = -1;
	while (ok + 1 < ng) {
		int mid = (ng + ok) / 2;
		vector<int> dist(n, INF);
		dist[0] = 0;
		deque<int> dq;
		dq.push_back(0);
		while (!dq.empty()) {
			int v = dq.front();
			dq.pop_front();
			for (auto [u, w] : g[v]) {
				if (w < mid) {
					continue;
				}
				if (dist[u] > dist[v] + 1) {
					dist[u] = dist[v] + 1;
					dq.push_back(u);
				}
			}
		}
		if (dist[n - 1] < INF) {
			ok = mid;
			ans = dist[n - 1];
		} else {
			ng = mid;
		}
	}
	cout << ok << " " << ans << endl;
}
0