結果
問題 | No.1215 都市消滅ビーム |
ユーザー | autumn-eel |
提出日時 | 2020-08-29 14:58:07 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,029 bytes |
コンパイル時間 | 1,847 ms |
コンパイル使用メモリ | 171,008 KB |
実行使用メモリ | 814,920 KB |
最終ジャッジ日時 | 2024-11-14 18:20:36 |
合計ジャッジ時間 | 35,670 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | RE | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | RE | - |
testcase_12 | WA | - |
testcase_13 | MLE | - |
testcase_14 | MLE | - |
testcase_15 | MLE | - |
testcase_16 | MLE | - |
testcase_17 | MLE | - |
testcase_18 | MLE | - |
testcase_19 | RE | - |
testcase_20 | MLE | - |
testcase_21 | RE | - |
testcase_22 | MLE | - |
testcase_23 | MLE | - |
testcase_24 | MLE | - |
testcase_25 | MLE | - |
testcase_26 | MLE | - |
testcase_27 | MLE | - |
testcase_28 | MLE | - |
testcase_29 | MLE | - |
testcase_30 | MLE | - |
testcase_31 | RE | - |
testcase_32 | MLE | - |
testcase_33 | RE | - |
testcase_34 | MLE | - |
testcase_35 | MLE | - |
testcase_36 | MLE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | MLE | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
ソースコード
#include <bits/stdc++.h> #define rep(i,n)for(int i=0;i<(n);i++) using namespace std; typedef long long ll; typedef pair<int,int>P; const int MOD=1000000007; const int INF=0x3f3f3f3f; const ll INFL=0x3f3f3f3f3f3f3f3f; int K; vector<int>E[200000]; int c[200000]; int l[200000],r[200000]; int dep[200000]; int node_cnt; int vin[200000],vout[200000]; void dfs_euler(int v,int p){ vin[v]=node_cnt++; for(int u:E[v]){ if(u==p)continue; dep[u]=dep[v]+1; dfs_euler(u,v); } vout[v]=node_cnt; } int ans=0; void dfs(int v,int p){ int L=-1,R=K; for(int u:E[v]){ if(u==p)continue; dfs(u,v); L=max(L,l[u]); R=min(R,r[u]); } L=min(L,R-1); while(L+1<R&&vin[v]<=c[L+1]&&c[L+1]<vout[v])L++; while(R-1>L&&vin[v]<=c[R-1]&&c[R-1]<vout[v])R--; if(L+1+(K-R)){ ans=max(ans,L+1+(K-R)+dep[v]); } l[v]=L;r[v]=R; } int main(){ int n; cin>>n>>K; rep(i,K)scanf("%d",&c[i]); rep(i,n-1){ int a,b;scanf("%d%d",&a,&b);a--;b--; E[a].push_back(b); E[b].push_back(a); } dfs_euler(0,-1); dfs(0,-1); cout<<ans<<endl; }