QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#21217 | #2065. Cyclic Distance | uezexh | WA | 58ms | 7912kb | C++17 | 1.9kb | 2022-03-03 18:25:54 | 2022-05-08 02:35:10 |
Judging History
answer
#include <cstdio>
#include <tuple>
#include <vector>
#include <algorithm>
using namespace std;
typedef long long ll;
typedef pair<int,int> pii;
const int N=200005;
int n,K;
vector<pii> edge[N];
bool vis[N];
int _,siz[N];
void dfs_c(int x,int p,int S){
siz[x]=1;
int mx=0;
for(auto &[y,w]:edge[x]){
if(y==p || vis[y])
continue;
dfs_c(y,x,S);
siz[x]+=siz[y];
if(mx<siz[y])
mx=siz[y];
}
if(mx<S-siz[x])
mx=S-siz[x];
if(mx*2<=S)
_=x;
}
vector<tuple<ll,int,int>> v;
void dfs_t(int x,int p,ll d,int c){
v.push_back({d,c,x});
for(auto &[y,w]:edge[x]){
if(y==p)
continue;
dfs_t(y,x,d+w,c);
}
}
int cnt[N];
ll mx;
int rt;
bool cur[N],b[N];
void Solve(int x,int S){
dfs_c(x,0,S),vis[x=_]=true,dfs_c(x,0,S);
v.clear();
v.push_back({0,x,x});
for(auto &[y,w]:edge[x])
dfs_t(y,x,w,y);
sort(v.begin(),v.end());
reverse(v.begin(),v.end());
fill_n(cnt+1,n,0);
fill_n(cur+1,n,false);
ll s=0;
int t=0;
int nx=0;
for(auto &[d,c,x]:v){
if((cnt[c]+1)*2<=K){
s+=d,++t;
++cnt[c];
cur[x]=true;
if(t==K)
break;
}else if(!nx){
nx=c;
}
}
if(t==K && mx<s){
rt=x,mx=s;
copy_n(cur+1,n,b+1);
}
if(nx && !vis[nx])
Solve(nx,siz[nx]);
}
pair<ll,int> dfs(int x,int p){
ll mx=0;
int siz=b[x];
for(auto &[y,w]:edge[x]){
if(y==p)
continue;
auto t=dfs(y,x);
if((t.second+1)*2<=K)
t.first+=w;
if(mx<t.first)
mx=t.first;
siz+=t.second;
}
if(b[x])
mx=0xc0c0c0c0c0c0c0c0;
return {mx,siz};
}
void Main(){
scanf("%d%d",&n,&K);
mx=-1,rt=0;
for(int i=1;i<=n;++i){
vis[i]=false;
edge[i].clear();
}
for(int i=1,u,v,w;i<n;++i){
scanf("%d%d%d",&u,&v,&w);
edge[u].emplace_back(v,w);
edge[v].emplace_back(u,w);
}
if(K&1){
--K;
Solve(1,n);
mx+=dfs(rt,0).first;
}else{
Solve(1,n);
}
printf("%lld\n",mx*2);
}
int main(){
int T;
scanf("%d",&T);
while(T--)
Main();
return 0;
}
詳細信息
Test #1:
score: 100
Accepted
time: 2ms
memory: 7912kb
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: 58ms
memory: 7904kb
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: 58ms
memory: 7864kb
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: 52ms
memory: 7808kb
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 5661430 9713590 5160212 5958260 14418122 1913782 1393854 5129544 9369494 11601220 4751232 1623938 8259790 3591252 5112182 4761950 5284034 13000192 4895040 ...
result:
wrong answer 11347th lines differ - expected: '15584212', found: '-9114861777583626340'