QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#458648 | #2065. Cyclic Distance | Wuyanru | WA | 24ms | 18360kb | C++14 | 2.8kb | 2024-06-29 18:06:28 | 2024-06-29 18:06:29 |
Judging History
answer
#include<bits/stdc++.h>
#define inf 0x3f3f3f3f3f3f3f3fll
#define debug(x) cerr<<#x<<"="<<x<<endl
using namespace std;
using ll=long long;
using ld=long double;
using pli=pair<ll,int>;
using pi=pair<int,int>;
template<typename A>
using vc=vector<A>;
inline int read()
{
int s=0,w=1;char ch;
while((ch=getchar())>'9'||ch<'0') if(ch=='-') w=-1;
while(ch>='0'&&ch<='9') s=s*10+ch-'0',ch=getchar();
return s*w;
}
template<const int N,const int M>
struct wgraph
{
int head[N+5];
int ww[M+5];
int t[M+5];
int x[M+5];
int cntm;
wgraph(){ cntm=1;}
inline void clear(int n=N)
{
cntm=1;
for(int i=1;i<=n;i++) head[i]=0;
}
inline void ad(int u,int v,int w)
{
cntm++;
t[cntm]=v;
x[cntm]=head[u];
ww[cntm]=w;
head[u]=cntm;
}
inline void add(int u,int v,int w)
{
ad(u,v,w);
ad(v,u,w);
}
inline int st(int num){ return head[num];}
inline int to(int num){ return t[num];}
inline int nx(int num){ return x[num];}
inline int w(int num){ return ww[num];}
};
wgraph<200000,400000>g;
vc<int>nod[200001];
int anc[200001];
int d1[200001];
int fa[200001];
ll d2[200001];
int id[200001];
int c[200001];
int n,k;
void dfs(int num)
{
if(!fa[num]) anc[num]=0;
else if(!anc[fa[num]]) anc[num]=num;
else anc[num]=anc[fa[num]];
nod[d1[num]].push_back(num),c[num]=0;
for(int i=g.st(num);i;i=g.nx(i))
{
int p=g.to(i);
if(p==fa[num]) continue;
fa[p]=num,d1[p]=d1[num]+1;
d2[p]=d2[num]+g.w(i);
dfs(p);
}
}
inline void cover(int u)
{
for(int i=0;i<=n;i++) id[i]=i,nod[i].clear();
d1[u]=0,fa[u]=0,d2[u]=0,dfs(u);
sort(id+1,id+n+1,[](int x,int y)
{
if(d2[x]!=d2[y]) return d2[x]>d2[y];
return x<y;
});
for(int i=1;i<=k;i++) c[id[i]]++;
for(int i=n-1;i;i--) for(int p:nod[i]) c[fa[p]]+=c[p];
}
inline ll run(int u)
{
d1[u]=0,d2[u]=0,fa[u]=0,c[0]=0,dfs(u);
sort(id+1,id+n+1,[](int x,int y)
{
if(d2[x]!=d2[y]) return d2[x]>d2[y];
return x<y;
});
int now=0;ll ans=0;
for(int i=1;i<=n&&now<k;i++)
{
int p=id[i];
if((c[anc[p]]+1)*2>k) continue;
// printf("%d : anc=%d\n",p,anc[p]);
c[anc[p]]++,ans+=d2[p],now++;
}
if(now!=k) return -1;
// printf("run %d : %lld\n",u,ans<<1);
return ans<<1;
}
int main()
{
int T=read();
while(T--)
{
g.clear(n),n=read(),k=read();
for(int i=1;i<n;i++)
{
int u=read(),v=read(),w=read();
g.add(u,v,w);
}
cover(1);int o=-1;
for(int i=0;i<=n;i++) for(int j:nod[i]) if(c[j]*2>k) o=j;
assert(o!=-1);
vc<int>val;
for(int i=o;i;i=fa[i]) val.push_back(i);
int l=0,r=(int)val.size()-1;
while(r-l>1)
{
int mid=(l+r)>>1;cover(val[mid]);
int L=c[val[mid-1]],R=c[val[mid+1]];
if(L*2<=k) l=mid;
if(R*2<=k) r=mid;
}
ll ans=run(val[l]);
if(l!=r) ans=max(ans,run(val[r]));
printf("%lld\n",ans);
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 3ms
memory: 18152kb
input:
1 5 3 1 2 4 1 3 1 1 4 8 4 5 9
output:
44
result:
ok single line: '44'
Test #2:
score: 0
Accepted
time: 18ms
memory: 16124kb
input:
57206 3 2 1 2 574927 2 3 406566 2 2 1 2 308806 4 3 1 2 312588 2 3 500141 2 4 53602 3 3 1 2 797183 2 3 944061 5 3 1 2 624010 2 3 488613 3 4 734514 4 5 497493 5 4 1 2 540278 2 3 488655 2 4 228989 2 5 653896 2 2 1 2 569117 4 2 1 2 821764 2 3 499471 1 4 549060 2 2 1 2 991159 2 2 1 2 482941 5 4 1 2 30462...
output:
1962986 617612 1732662 3482488 4689260 3823636 1138234 3740590 1982318 965882 3418504 5026562 1623414 1885106 1952142 3050630 1691896 3102076 2380932 3076270 5697196 7258020 879020 2500212 3613854 1358950 1182198 2273662 2331560 1681964 8917452 2373066 3163042 3104226 3642898 3162310 5058442 3669186...
result:
ok 57206 lines
Test #3:
score: 0
Accepted
time: 18ms
memory: 18360kb
input:
57087 3 3 1 2 34132 1 3 188096 2 2 1 2 996527 2 2 1 2 475736 5 3 1 2 329834 2 3 339687 1 4 954113 4 5 224354 2 2 1 2 641444 2 2 1 2 114059 5 3 1 2 635722 1 3 552627 1 4 721758 3 5 396156 4 3 1 2 655099 2 3 963393 1 4 953969 5 2 1 2 369719 1 3 22087 1 4 531252 3 5 449025 4 3 1 2 788498 1 3 220292 1 4...
output:
444456 1993054 951472 3695976 1282888 228118 4612526 5144922 2004728 3309502 2626844 3053048 3939444 3790784 2617770 38866 3033250 5707738 511666 403846 1923106 3331606 3447180 2329518 5656124 33582 2283312 3454982 110590 3125394 4517486 4522330 2352316 3966810 3463746 5181112 3089346 1260326 466418...
result:
ok 57087 lines
Test #4:
score: -100
Wrong Answer
time: 24ms
memory: 18100kb
input:
33344 9 6 1 2 562996 1 3 312637 3 4 591016 1 5 811983 2 6 896220 3 7 854379 2 8 861166 1 9 672337 8 6 1 2 53530 1 3 712638 1 4 539356 1 5 179377 3 6 456495 2 7 730760 4 8 934379 3 3 1 2 87024 1 3 328551 3 3 1 2 664600 1 3 519786 5 4 1 2 374521 1 3 484148 2 4 501378 1 5 280691 10 3 1 2 676949 1 3 639...
output:
12876734 9717058 831150 2368772 4030518 7963678 2135868 739728 11584454 1670128 3432160 5573124 1293282 3608364 8574290 6242670 10860048 4726106 4903320 9713590 5160212 5958260 14418122 1913782 1393854 5129544 9369494 11601220 4751232 1623938 8259790 3591252 5112182 4761950 5284034 13000192 4895040 ...
result:
wrong answer 19th lines differ - expected: '5661430', found: '4903320'