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 depth,int lv,int type)
{
//printf("%lld %lld %lld %lld %lld\n",u,p,type,depth,lv);
if(depth>k)return;
if(type==1)
{
ans=min(ans,lv+val[k-depth]);
}else if(type==0)
{
val[depth]=min(val[depth],lv);
}else
{
val[depth]=1e9,val[k-depth]=1e9;
}
for(auto [node,w]: adj[u])
{
if(node!=p&&vis[node]==0) dfs(node,u,depth+w,lv+1,type);
}
}
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,v,w,1,2);
}
}
val[0] = 0;
for(auto [v,w] : adj[c]){
if(!vis[v]){
dfs(v,v,w,1,1);
dfs(v,v,w,1,0);
}
}
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:35:14: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17'
35 | for(auto [node,w]: adj[u])
| ^
race.cpp: In function 'void process(int)':
race.cpp:47:14: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17'
47 | for(auto [v,w] : adj[c]){
| ^
race.cpp:54:14: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17'
54 | for(auto [v,w] : adj[c]){
| ^
race.cpp:61:14: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17'
61 | 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... |