結果
問題 | No.1833 Subway Planning |
ユーザー | kwm_t |
提出日時 | 2022-02-05 13:12:28 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 467 ms / 4,000 ms |
コード長 | 1,983 bytes |
コンパイル時間 | 2,244 ms |
コンパイル使用メモリ | 209,068 KB |
実行使用メモリ | 45,692 KB |
最終ジャッジ日時 | 2024-06-11 13:29:10 |
合計ジャッジ時間 | 9,218 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
8,116 KB |
testcase_01 | AC | 3 ms
8,192 KB |
testcase_02 | AC | 4 ms
8,064 KB |
testcase_03 | AC | 3 ms
8,064 KB |
testcase_04 | AC | 249 ms
45,692 KB |
testcase_05 | AC | 267 ms
45,692 KB |
testcase_06 | AC | 383 ms
31,104 KB |
testcase_07 | AC | 441 ms
36,736 KB |
testcase_08 | AC | 467 ms
40,932 KB |
testcase_09 | AC | 299 ms
45,656 KB |
testcase_10 | AC | 297 ms
25,268 KB |
testcase_11 | AC | 196 ms
25,140 KB |
testcase_12 | AC | 214 ms
25,056 KB |
testcase_13 | AC | 297 ms
25,144 KB |
testcase_14 | AC | 302 ms
25,216 KB |
testcase_15 | AC | 240 ms
25,404 KB |
testcase_16 | AC | 411 ms
26,752 KB |
testcase_17 | AC | 386 ms
25,328 KB |
testcase_18 | AC | 369 ms
24,192 KB |
testcase_19 | AC | 258 ms
24,992 KB |
testcase_20 | AC | 177 ms
21,248 KB |
testcase_21 | AC | 353 ms
32,040 KB |
testcase_22 | AC | 293 ms
28,752 KB |
testcase_23 | AC | 5 ms
8,064 KB |
testcase_24 | AC | 4 ms
8,192 KB |
testcase_25 | AC | 4 ms
8,064 KB |
ソースコード
#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; }