結果

問題 No.1833 Subway Planning
ユーザー kwm_tkwm_t
提出日時 2022-02-05 13:12:28
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 671 ms / 4,000 ms
コード長 1,983 bytes
コンパイル時間 2,146 ms
コンパイル使用メモリ 207,260 KB
実行使用メモリ 42,500 KB
最終ジャッジ日時 2023-09-02 06:35:41
合計ジャッジ時間 11,796 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
8,124 KB
testcase_01 AC 4 ms
8,056 KB
testcase_02 AC 4 ms
8,048 KB
testcase_03 AC 4 ms
8,124 KB
testcase_04 AC 270 ms
42,420 KB
testcase_05 AC 275 ms
42,500 KB
testcase_06 AC 508 ms
29,508 KB
testcase_07 AC 624 ms
34,484 KB
testcase_08 AC 671 ms
38,224 KB
testcase_09 AC 347 ms
42,492 KB
testcase_10 AC 444 ms
24,880 KB
testcase_11 AC 233 ms
24,936 KB
testcase_12 AC 246 ms
24,880 KB
testcase_13 AC 453 ms
24,952 KB
testcase_14 AC 443 ms
25,260 KB
testcase_15 AC 285 ms
25,244 KB
testcase_16 AC 487 ms
26,888 KB
testcase_17 AC 577 ms
25,440 KB
testcase_18 AC 517 ms
24,248 KB
testcase_19 AC 312 ms
25,104 KB
testcase_20 AC 233 ms
21,100 KB
testcase_21 AC 491 ms
30,040 KB
testcase_22 AC 400 ms
27,628 KB
testcase_23 AC 4 ms
8,060 KB
testcase_24 AC 4 ms
8,204 KB
testcase_25 AC 4 ms
8,184 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"
#define P pair<int,int>
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; }
struct Edge {
	int to, cost;
	Edge(int _to, int _cost) :to(_to), cost(_cost) {}
};
vector<Edge>g[200005];
multiset<int>include, exclude;
void dfs(int v, int p = -1) {
	for (Edge e : g[v]) {
		if (p == e.to) continue;
		exclude.insert(e.cost);
		dfs(e.to, v);
	}
}
int anssub;
void dfs2(int v, int p = -1) {
	for (Edge e : g[v]) {
		if (p == e.to) continue;
		include.insert(e.cost);
		exclude.erase(exclude.find(e.cost));
		int x = *exclude.rbegin();
		int y = *include.begin();
		int z = *include.rbegin();
		chmin(anssub, max(x, z - y));
		dfs2(e.to, v);
		exclude.insert(e.cost);
		include.erase(include.find(e.cost));
	}
}
int main() {
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	int n; cin >> n;
	int s = 0, t = 0, w = 0;
	rep(i, n - 1) {
		int a, b, c; cin >> a >> b >> c; a--; b--;
		g[a].push_back({ b,c });
		g[b].push_back({ a,c });
		if (chmax(w, c)) s = a, t = b;
	}
	int ans = 0;
	rep(i, 2) {
		include.clear();
		exclude.clear();
		exclude.insert(0);
		include.insert(w);
		dfs(s, t);
		anssub = *exclude.rbegin();
		dfs2(s, t);
		chmax(ans, anssub);
		//cout << anssub << endl;
		swap(s, t);
	}
	cout << ans << endl;
	return 0;
}
0