結果

問題 No.1473 おでぶなおばけさん
ユーザー kwm_tkwm_t
提出日時 2021-04-10 18:54:52
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 163 ms / 2,000 ms
コード長 1,449 bytes
コンパイル時間 1,823 ms
コンパイル使用メモリ 174,996 KB
実行使用メモリ 9,932 KB
最終ジャッジ日時 2024-06-26 07:47:21
合計ジャッジ時間 6,895 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
5,760 KB
testcase_01 AC 4 ms
5,760 KB
testcase_02 AC 100 ms
9,728 KB
testcase_03 AC 77 ms
9,188 KB
testcase_04 AC 70 ms
7,808 KB
testcase_05 AC 31 ms
6,656 KB
testcase_06 AC 124 ms
9,440 KB
testcase_07 AC 104 ms
9,796 KB
testcase_08 AC 149 ms
9,932 KB
testcase_09 AC 92 ms
9,800 KB
testcase_10 AC 38 ms
7,680 KB
testcase_11 AC 41 ms
8,576 KB
testcase_12 AC 37 ms
8,064 KB
testcase_13 AC 26 ms
7,168 KB
testcase_14 AC 20 ms
6,656 KB
testcase_15 AC 35 ms
7,936 KB
testcase_16 AC 37 ms
7,552 KB
testcase_17 AC 6 ms
5,888 KB
testcase_18 AC 7 ms
6,144 KB
testcase_19 AC 45 ms
7,808 KB
testcase_20 AC 62 ms
8,764 KB
testcase_21 AC 76 ms
8,704 KB
testcase_22 AC 55 ms
9,292 KB
testcase_23 AC 46 ms
8,748 KB
testcase_24 AC 46 ms
8,780 KB
testcase_25 AC 161 ms
9,292 KB
testcase_26 AC 163 ms
9,292 KB
testcase_27 AC 40 ms
7,040 KB
testcase_28 AC 123 ms
9,868 KB
testcase_29 AC 76 ms
8,704 KB
testcase_30 AC 103 ms
9,304 KB
testcase_31 AC 90 ms
9,732 KB
testcase_32 AC 85 ms
9,560 KB
testcase_33 AC 68 ms
8,832 KB
testcase_34 AC 39 ms
7,424 KB
testcase_35 AC 34 ms
7,552 KB
testcase_36 AC 62 ms
8,320 KB
testcase_37 AC 91 ms
8,592 KB
testcase_38 AC 15 ms
6,400 KB
testcase_39 AC 38 ms
7,424 KB
testcase_40 AC 38 ms
7,424 KB
testcase_41 AC 36 ms
7,448 KB
testcase_42 AC 36 ms
7,320 KB
testcase_43 AC 43 ms
8,340 KB
testcase_44 AC 42 ms
8,336 KB
testcase_45 AC 43 ms
8,336 KB
testcase_46 AC 67 ms
8,500 KB
testcase_47 AC 83 ms
9,160 KB
testcase_48 AC 83 ms
8,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
//#include "atcoder/all"
using namespace std;
//using namespace atcoder;
//using mint = modint1000000007;
//const int mod = 1000000007;
//using mint = modint998244353;
//const int mod = 998244353;
const int INF = 1e9;
const long long LINF = 1e18;
#define rep(i, n) for (int i = 0; i < (n); ++i)
#define rep2(i,l,r)for(int i=(l);i<(r);++i)
#define rrep(i, n) for (int i = (n-1); i >= 0; --i)
#define rrep2(i,l,r)for(int i=(r-1);i>=(l);--i)
#define all(x) (x).begin(),(x).end()
#define allR(x) (x).rbegin(),(x).rend()
#define endl "\n"
int n, m;
struct Edge {
	int to, w;
	Edge(int to, int w) :to(to), w(w) {}
};
vector<Edge>g[100005];
int f(long long x) {
	vector<int>d(n, INF);
	queue<int> q;
	q.emplace(0);
	d[0] = 0;
	while (!q.empty()) {
		int now = q.front();
		q.pop();
		for (auto e : g[now]) {
			if (e.w < x) { continue; }
			if (d[e.to] > d[now] + 1) {
				d[e.to] = d[now] + 1;
				q.emplace(e.to);
			}
		}
	}
	if (INF == d[n - 1]) {
		return -1;
	}
	return d[n - 1];
}
int main() {
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	cin >> n >> m;
	rep(i, m) {
		int s, t, d;
		cin >> s >> t >> d;
		s--;
		t--;
		g[s].emplace_back(t, d);
		g[t].emplace_back(s, d);
	}
	long long ng = INF + 1;
	long long ok = 0;
	int ans = 0;
	while (1 < abs(ok - ng)) {
		long long c = (ng + ok) / 2;
		int ret = f(c);
		if (-1 != ret) { ok = c; ans = ret; }
		else { ng = c; }
	}
	cout << ok << " " << ans << endl;
	return 0;
}
0