結果
問題 | No.1833 Subway Planning |
ユーザー | kmjp |
提出日時 | 2022-02-04 23:51:21 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 349 ms / 4,000 ms |
コード長 | 1,643 bytes |
コンパイル時間 | 2,462 ms |
コンパイル使用メモリ | 205,812 KB |
実行使用メモリ | 30,036 KB |
最終ジャッジ日時 | 2024-06-11 13:06:43 |
合計ジャッジ時間 | 7,302 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
8,064 KB |
testcase_01 | AC | 4 ms
8,112 KB |
testcase_02 | AC | 4 ms
8,168 KB |
testcase_03 | AC | 4 ms
8,064 KB |
testcase_04 | AC | 140 ms
24,832 KB |
testcase_05 | AC | 197 ms
30,036 KB |
testcase_06 | AC | 179 ms
29,952 KB |
testcase_07 | AC | 309 ms
29,056 KB |
testcase_08 | AC | 305 ms
29,824 KB |
testcase_09 | AC | 349 ms
29,824 KB |
testcase_10 | AC | 123 ms
15,748 KB |
testcase_11 | AC | 98 ms
15,716 KB |
testcase_12 | AC | 100 ms
15,844 KB |
testcase_13 | AC | 119 ms
15,848 KB |
testcase_14 | AC | 122 ms
15,872 KB |
testcase_15 | AC | 194 ms
16,000 KB |
testcase_16 | AC | 193 ms
17,536 KB |
testcase_17 | AC | 287 ms
16,000 KB |
testcase_18 | AC | 257 ms
15,488 KB |
testcase_19 | AC | 198 ms
15,504 KB |
testcase_20 | AC | 203 ms
13,992 KB |
testcase_21 | AC | 222 ms
24,140 KB |
testcase_22 | AC | 183 ms
20,600 KB |
testcase_23 | AC | 4 ms
8,192 KB |
testcase_24 | AC | 4 ms
8,064 KB |
testcase_25 | AC | 4 ms
8,064 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef signed long long ll; #define _P(...) (void)printf(__VA_ARGS__) #define FOR(x,to) for(x=0;x<(to);x++) #define FORR(x,arr) for(auto& x:arr) #define FORR2(x,y,arr) for(auto& [x,y]:arr) #define ALL(a) (a.begin()),(a.end()) #define ZERO(a) memset(a,0,sizeof(a)) #define MINUS(a) memset(a,0xff,sizeof(a)) template<class T> bool chmax(T &a, const T &b) { if(a<b){a=b;return 1;}return 0;} template<class T> bool chmin(T &a, const T &b) { if(a>b){a=b;return 1;}return 0;} //------------------------------------------------------- int N; vector<pair<int,int>> E[202020]; pair<int,int> hoge(int cur,int pre,int v) { pair<int,int> p={1<<30,-1}; FORR2(e,c,E[cur]) if(e!=pre) { auto q=hoge(e,cur,v); if(q.second>v||c>v) { q.first=min(q.first,c); q.second=max(q.second,c); } if(p.second>v&&q.second>v) { return {-1,1<<30}; } else if(q.second>=v) { p=q; } } return p; } int can(int v) { int i; FOR(i,N) { FORR2(e,c,E[i]) if(c>v) { pair<int,int> A=hoge(e,i,v); pair<int,int> B=hoge(i,e,v); return (max({c,A.second,B.second})-min({c,A.first,B.first}))<=v; } } return 1; } void solve() { int i,j,k,l,r,x,y; string s; cin>>N; FOR(i,N-1) { cin>>x>>y>>r; E[x-1].push_back({y-1,r}); E[y-1].push_back({x-1,r}); } int ret=(1<<30)-1; for(i=29;i>=0;i--) if(can(ret-(1<<i))) ret-=1<<i; cout<<ret<<endl; } int main(int argc,char** argv){ string s;int i; if(argc==1) ios::sync_with_stdio(false), cin.tie(0); FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin); cout.tie(0); solve(); return 0; }