結果

問題 No.1473 おでぶなおばけさん
ユーザー kwm_tkwm_t
提出日時 2021-04-10 18:53:26
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,445 bytes
コンパイル時間 1,985 ms
コンパイル使用メモリ 175,856 KB
実行使用メモリ 9,864 KB
最終ジャッジ日時 2024-06-26 07:45:36
合計ジャッジ時間 7,464 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
5,760 KB
testcase_01 AC 4 ms
5,760 KB
testcase_02 AC 108 ms
9,720 KB
testcase_03 AC 84 ms
9,196 KB
testcase_04 AC 73 ms
7,808 KB
testcase_05 AC 30 ms
6,656 KB
testcase_06 AC 128 ms
9,440 KB
testcase_07 AC 108 ms
9,796 KB
testcase_08 AC 151 ms
9,800 KB
testcase_09 AC 96 ms
9,808 KB
testcase_10 AC 39 ms
7,680 KB
testcase_11 AC 40 ms
8,576 KB
testcase_12 AC 38 ms
8,064 KB
testcase_13 AC 26 ms
7,168 KB
testcase_14 AC 19 ms
6,656 KB
testcase_15 AC 34 ms
7,936 KB
testcase_16 AC 36 ms
7,388 KB
testcase_17 AC 6 ms
5,888 KB
testcase_18 AC 8 ms
6,144 KB
testcase_19 AC 42 ms
7,808 KB
testcase_20 AC 63 ms
8,952 KB
testcase_21 AC 74 ms
8,704 KB
testcase_22 AC 54 ms
9,420 KB
testcase_23 AC 44 ms
8,748 KB
testcase_24 AC 42 ms
8,780 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 116 ms
9,864 KB
testcase_29 AC 75 ms
8,704 KB
testcase_30 AC 104 ms
9,168 KB
testcase_31 AC 86 ms
9,728 KB
testcase_32 AC 82 ms
9,560 KB
testcase_33 AC 62 ms
8,832 KB
testcase_34 AC 38 ms
7,424 KB
testcase_35 AC 33 ms
7,680 KB
testcase_36 AC 61 ms
8,320 KB
testcase_37 AC 87 ms
8,592 KB
testcase_38 AC 15 ms
6,272 KB
testcase_39 AC 37 ms
7,552 KB
testcase_40 AC 38 ms
7,424 KB
testcase_41 AC 36 ms
7,320 KB
testcase_42 AC 35 ms
7,320 KB
testcase_43 AC 42 ms
8,340 KB
testcase_44 AC 42 ms
8,468 KB
testcase_45 AC 42 ms
8,340 KB
testcase_46 AC 71 ms
8,500 KB
testcase_47 AC 94 ms
9,164 KB
testcase_48 AC 82 ms
8,812 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;
	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