1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
| #include<cstdio> #include<cstring> #include<algorithm> #include<iostream> #include<queue> #include<map> #include<stack> #include<cmath> #include<set> #include<bitset> #include<assert.h> #define inc(i,l,r) for(int i=l;i<=r;i++) #define dec(i,l,r) for(int i=l;i>=r;i--) #define link(x) for(edge *j=h[x];j;j=j->next) #define mem(a) memset(a,0,sizeof(a)) #define ll long long #define eps 1e-6 #define succ(x) (1<<x) #define lowbit(x) (x&(-x)) #define sqr(x) ((x)*(x)) #define mid (x+y)/2 #define NM 300005 #define nm 600005 #define pi 3.1415926535897931 const ll inf=3e11; using namespace std; ll read(){ ll x=0,f=1;char ch=getchar(); while(!isdigit(ch)){if(ch=='-')f=-1;ch=getchar();} while(isdigit(ch))x=x*10+ch-'0',ch=getchar(); return f*x; }
struct edge{int t,v;edge*next;}e[nm],*h[NM],*o=e; void add(int x,int y,int v){o->v=v;o->t=y;o->next=h[x];h[x]=o++;} int n,k,_x,_y; ll _t,s; struct tmp{ ll x;int y; bool operator<(const tmp&o)const{return x<o.x||(x==o.x&&y>o.y);} tmp operator+(const tmp&o)const{return tmp{x+o.x,y+o.y};} void operator+=(const tmp&o){x+=o.x;y+=o.y;} }d[NM][3],ans;
void dfs(int x,int f){ d[x][0]=tmp{0,0};d[x][1]=d[x][2]=tmp{_t,1}; link(x)if(j->t!=f){ dfs(j->t,x); d[x][2]+=max(d[j->t][0],max(d[j->t][1],d[j->t][2])); d[x][2]=max(d[x][2],d[x][1]+d[j->t][1]+tmp{j->v-_t,-1}); d[x][2]=max(d[x][2],d[x][1]+d[j->t][0]+tmp{j->v,0}); d[x][1]+=max(d[j->t][0],max(d[j->t][1],d[j->t][2])); d[x][1]=max(d[x][1],d[x][0]+d[j->t][1]+tmp{j->v,0}); d[x][1]=max(d[x][1],d[x][0]+d[j->t][0]+tmp{j->v+_t,1}); d[x][0]+=max(d[j->t][0],max(d[j->t][1],d[j->t][2])); } }
int main(){ n=read();k=read()+1; inc(i,2,n){_x=read();_y=read();_t=read();add(_x,_y,_t);add(_y,_x,_t);} for(ll x=-inf,y=inf;x<=y;){ _t=x+y>>1; dfs(1,0); ans=max(d[1][0],max(d[1][1],d[1][2])); if(ans.y<=k)x=_t+1,s=ans.x-_t*k; else y=_t-1; } printf("%lld\n",s); return 0; }
|