結果

問題 No.1473 おでぶなおばけさん
ユーザー tkmst201tkmst201
提出日時 2021-06-13 11:34:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,385 bytes
コンパイル時間 2,606 ms
コンパイル使用メモリ 215,840 KB
実行使用メモリ 16,552 KB
最終ジャッジ日時 2024-12-21 16:37:32
合計ジャッジ時間 53,745 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,636 KB
testcase_01 AC 2 ms
16,292 KB
testcase_02 TLE -
testcase_03 TLE -
testcase_04 AC 454 ms
12,068 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 AC 164 ms
15,616 KB
testcase_08 AC 161 ms
14,848 KB
testcase_09 AC 156 ms
16,552 KB
testcase_10 AC 368 ms
10,624 KB
testcase_11 AC 278 ms
13,696 KB
testcase_12 AC 452 ms
11,008 KB
testcase_13 AC 57 ms
14,464 KB
testcase_14 AC 44 ms
10,496 KB
testcase_15 AC 85 ms
13,568 KB
testcase_16 AC 354 ms
10,624 KB
testcase_17 AC 14 ms
11,136 KB
testcase_18 AC 24 ms
10,496 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 118 ms
13,952 KB
testcase_23 AC 90 ms
15,720 KB
testcase_24 AC 90 ms
13,184 KB
testcase_25 AC 135 ms
8,704 KB
testcase_26 AC 140 ms
8,576 KB
testcase_27 AC 51 ms
5,248 KB
testcase_28 AC 163 ms
9,472 KB
testcase_29 AC 349 ms
7,680 KB
testcase_30 AC 413 ms
7,936 KB
testcase_31 AC 949 ms
9,472 KB
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 AC 98 ms
6,528 KB
testcase_37 AC 106 ms
7,680 KB
testcase_38 AC 22 ms
5,248 KB
testcase_39 AC 367 ms
5,248 KB
testcase_40 AC 378 ms
5,376 KB
testcase_41 AC 79 ms
5,248 KB
testcase_42 AC 78 ms
5,248 KB
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 AC 101 ms
7,424 KB
testcase_47 AC 121 ms
8,064 KB
testcase_48 AC 107 ms
15,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define FOR(i,a,b) for(int i=(a);i<(b);++i)
#define REP(i,n) FOR(i,0,n)
#define ALL(v) begin(v),end(v)
template<typename A, typename B> inline bool chmax(A & a, const B & b) { if (a < b) { a = b; return true; } return false; }
template<typename A, typename B> inline bool chmin(A & a, const B & b) { if (a > b) { a = b; return true; } return false; }
using ll = long long;
using pii = pair<int, int>;
constexpr ll INF = 1ll<<30;
constexpr ll longINF = 1ll<<60;
constexpr ll MOD = 1000000007;
constexpr bool debug = false;
//---------------------------------//

int main() {
	int N, M;
	cin >> N >> M;
	vector<vector<pii>> g(N);
	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);
	}
	
	vector<int> dist(N, -INF);
	priority_queue<pii, vector<pii>, greater<pii>> pq;
	dist[0] = INF;
	pq.emplace(INF, 0);
	while (!pq.empty()) {
		auto [d, u] = pq.top(); pq.pop();
		if (dist[u] != d) continue;
		for (auto [v, dis] : g[u]) if (chmax(dist[v], min(d, dis))) pq.emplace(dist[v], v);
	}
	
	int mx = dist[N - 1];
	
	dist.assign(N, INF);
	queue<int> que;
	dist[0] = 0;
	que.emplace(0);
	while (!que.empty()) {
		int u = que.front(); que.pop();
		for (auto [v, dis] : g[u]) if (dis >= mx && chmin(dist[v], dist[u] + 1)) que.emplace(v);
	}
	
	cout << mx << " " << dist[N - 1] << endl;
}
0