This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "race.h"
#include<bits/stdc++.h>
using namespace std;
#define F first
#define S second
int n,k,sz[200005],lv[200005],vis[200005],ans=1e9,val[1000005];
vector<pair<int,int> > adj[200005];
int size(int u,int p){
sz[u] = 1;
for(auto [v,x] : adj[u]) if(!vis[v] && v != p) sz[u] += size(v,u);
return sz[u];
}
int find_cen(int u,int p,int s){
for(auto [v,x] : adj[u]) if(!vis[v] && v != p && sz[v] > s/2) return find_cen(v,u,s);
return u;
}
void dfs(int u,int p,int len,int lv,int mode){
if(len > k) return;
if(mode == 0){
ans = min(ans, lv + val[k - len]);
//printf("!! %d %d : %d %d\n",u,len,lv,val[k-len]);
for(auto [v,w] : adj[u]){
if(!vis[v] && v != p && len+w <= k){
dfs(v,u,len+w,lv+1,mode);
}
}
}
else if(mode == 1){
val[len] = min(val[len],lv);
//printf("!! %d %d\n",len,lv);
for(auto [v,w] : adj[u]){
if(!vis[v] && v != p && len+w <= k){
dfs(v,u,len+w,lv+1,mode);
}
}
}
else if(mode == 2){
val[len] = 1e9, val[k-len] = 1e9;
for(auto [v,w] : adj[u]){
if(!vis[v] && v != p && len+w <= k){
dfs(v,u,len+w,lv+1,mode);
}
}
}
}
void process(int u){
size(u,u);
int c = find_cen(u,u,n);
//printf("cen : %d\n",c);
vis[c] = 1;
for(auto [v,w] : adj[c]){
if(!vis[v]){
dfs(v,u,c,1,2);
}
}
val[0] = 0;
for(auto [v,w] : adj[c]){
if(!vis[v]){
dfs(v,u,c,1,0);
dfs(v,u,c,1,1);
}
}
for(auto [v,w] : adj[c]){
if(!vis[v]){
process(v);
}
}
}
int best_path(int N, int K, int H[][2], int L[])
{
n = N, k = K;
for(int i=0;i<n-1;i++){
adj[H[i][0]+1].push_back({H[i][1]+1,L[i]});
adj[H[i][1]+1].push_back({H[i][0]+1,L[i]});
}
for(int i=1;i<=1000000;i++) val[i] = 1e9;
process(1);
return (ans == 1e9) ? -1 : ans;
}
Compilation message (stderr)
race.cpp: In function 'int size(int, int)':
race.cpp:12:14: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17'
12 | for(auto [v,x] : adj[u]) if(!vis[v] && v != p) sz[u] += size(v,u);
| ^
race.cpp: In function 'int find_cen(int, int, int)':
race.cpp:17:14: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17'
17 | for(auto [v,x] : adj[u]) if(!vis[v] && v != p && sz[v] > s/2) return find_cen(v,u,s);
| ^
race.cpp: In function 'void dfs(int, int, int, int, int)':
race.cpp:26:18: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17'
26 | for(auto [v,w] : adj[u]){
| ^
race.cpp:35:18: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17'
35 | for(auto [v,w] : adj[u]){
| ^
race.cpp:43:18: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17'
43 | for(auto [v,w] : adj[u]){
| ^
race.cpp: In function 'void process(int)':
race.cpp:57:14: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17'
57 | for(auto [v,w] : adj[c]){
| ^
race.cpp:64:14: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17'
64 | for(auto [v,w] : adj[c]){
| ^
race.cpp:71:14: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17'
71 | for(auto [v,w] : adj[c]){
| ^
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |