結果

問題 No.1473 おでぶなおばけさん
ユーザー Example0911Example0911
提出日時 2021-04-09 21:48:22
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 930 bytes
コンパイル時間 2,616 ms
コンパイル使用メモリ 211,388 KB
実行使用メモリ 11,840 KB
最終ジャッジ日時 2024-06-25 04:59:07
合計ジャッジ時間 7,144 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 122 ms
11,492 KB
testcase_03 AC 65 ms
10,368 KB
testcase_04 AC 65 ms
7,752 KB
testcase_05 AC 30 ms
5,376 KB
testcase_06 AC 119 ms
10,720 KB
testcase_07 AC 98 ms
11,584 KB
testcase_08 AC 126 ms
11,592 KB
testcase_09 AC 91 ms
11,840 KB
testcase_10 AC 33 ms
7,424 KB
testcase_11 AC 36 ms
8,832 KB
testcase_12 AC 32 ms
8,320 KB
testcase_13 AC 20 ms
6,272 KB
testcase_14 AC 15 ms
5,376 KB
testcase_15 AC 28 ms
7,680 KB
testcase_16 AC 28 ms
6,784 KB
testcase_17 AC 3 ms
5,376 KB
testcase_18 AC 5 ms
5,376 KB
testcase_19 AC 43 ms
7,424 KB
testcase_20 AC 55 ms
9,448 KB
testcase_21 AC 75 ms
9,196 KB
testcase_22 AC 51 ms
10,588 KB
testcase_23 AC 38 ms
9,388 KB
testcase_24 AC 41 ms
9,428 KB
testcase_25 AC 89 ms
10,416 KB
testcase_26 AC 90 ms
10,512 KB
testcase_27 AC 26 ms
6,016 KB
testcase_28 AC 118 ms
11,472 KB
testcase_29 AC 68 ms
9,136 KB
testcase_30 AC 90 ms
10,236 KB
testcase_31 AC 74 ms
11,536 KB
testcase_32 AC 75 ms
11,128 KB
testcase_33 AC 61 ms
9,404 KB
testcase_34 AC 35 ms
6,680 KB
testcase_35 AC 29 ms
6,912 KB
testcase_36 AC 55 ms
8,296 KB
testcase_37 AC 71 ms
9,152 KB
testcase_38 AC 13 ms
5,376 KB
testcase_39 AC 30 ms
6,948 KB
testcase_40 AC 29 ms
6,912 KB
testcase_41 AC 30 ms
6,512 KB
testcase_42 AC 30 ms
6,508 KB
testcase_43 AC 39 ms
8,964 KB
testcase_44 AC 39 ms
9,212 KB
testcase_45 AC 38 ms
8,960 KB
testcase_46 AC 49 ms
9,028 KB
testcase_47 AC 72 ms
10,404 KB
testcase_48 AC 67 ms
9,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
//#define int long long
using namespace std;
using ll = long long;
using P = pair<ll, ll>;
const ll INF = (1LL << 61);
ll mod = 1000000007;

signed main() {
	ios::sync_with_stdio(false);
	cin.tie(0);
	ll n, m;
	cin >> n >> m;
	vector<vector<pair<ll, ll>>>G(n);
	for (int i = 0; i < m; i++) {
		ll s, t, d; cin >> s >> t >> d; s--; t--;
		G[s].push_back({ t, d });
		G[t].push_back({ s, d });
	}
	ll l = -1, r = 1001001001001;
	ll ans = 0;
	while (r - l > 1) {
		ll mid = (l + r) / 2;
		queue<ll>q;
		vector<ll>now(n, -1);
		q.push(0);
		now[0] = 0;
		while (!q.empty()) {
			ll p = q.front(); q.pop();
			for (auto nv : G[p]) {
				ll to = nv.first, tmp = nv.second;
				if (tmp < mid)continue;
				if (now[to] != -1)continue;
				now[to] = now[p] + 1;
				q.push(to);
			}
		}
		if (now[n - 1] == -1)r = mid;
		else {
			l = mid;
			ans = now[n - 1];
		}
	}
	cout << l << " " << ans << endl;
	return 0;
}
0