QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#107164#5313. Please Save PigelandwhyWA 138ms23168kbC++142.7kb2023-05-20 15:06:142023-05-20 15:06:18

Judging History

你现在查看的是最新测评结果

  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2023-05-20 15:06:18]
  • 评测
  • 测评结果:WA
  • 用时:138ms
  • 内存:23168kb
  • [2023-05-20 15:06:14]
  • 提交

answer

#include<stdio.h>
#include<algorithm>
#include<math.h>
#include<string.h>
#include<queue>
#include<stack>
#include<vector>
#include<map>
#include<set>
using namespace std;

typedef long long ll;
typedef pair<int,int> pii;
const int N=5e5+86;

int n,k;
ll ans=0x7f7f7f7f7f7f7f7f;
struct edge{int to,nxt,w;}e[N<<1];
int head[N],tot;
void add(int u,int v,int w){e[++tot]={v,head[u],w},head[u]=tot;}

ll a[N],sum;
struct Segment_Tree
{
    int l,r;
    ll g;
}t[N<<2];
void push_up(int o){t[o].g=__gcd(t[o<<1].g,t[o<<1|1].g);}
void build(int o,int l,int r)
{
    t[o].l=l,t[o].r=r;
    if(l==r){t[o].g=a[l]-a[l-1];return;}
    int mid=l+r>>1;
    build(o<<1,l,mid);
    build(o<<1|1,mid+1,r);
    push_up(o);
}
void update(int o,int x,ll k)
{
    if(t[o].l==t[o].r){t[o].g+=k;return;}
    if(x<=t[o<<1].r) update(o<<1,x,k);
    else update(o<<1|1,x,k);
    push_up(o);
}
struct node
{
    int in,out;
    bool f;
}p[N];
int cnt;
int dfs1(int u,int fa,ll dep)
{
    p[u].in=cnt+1;
    if(p[u].f) a[++cnt]=dep,p[u].out=cnt,sum+=dep;
    // printf("%d %lld\n",u,dep);
    for(int i=head[u];i;i=e[i].nxt)
    {
        int v=e[i].to,w=e[i].w;
        if(v==fa) continue;
        p[u].out=max(p[u].out,dfs1(v,u,dep+w));
    }
    // printf("%d %d %d\n",u,p[u].in,p[u].out);
    return p[u].out;
}
void dfs2(int u,int fa)
{
    ans=min(ans,abs(t[1].g)?sum*2/abs(t[1].g):0);
    for(int i=head[u];i;i=e[i].nxt)
    {
        int v=e[i].to;
        ll w=e[i].w;
        if(v==fa) continue;
        sum+=-(p[v].in<=p[v].out)*(p[v].out-p[v].in+1)*w+(k-(p[v].in<=p[v].out)*(p[v].out-p[v].in+1))*w;
        if(p[v].in<=p[v].out)
        {
            update(1,1,w);
            update(1,p[v].in,-2*w);
            if(p[v].out<k) update(1,p[v].out+1,2*w);
        }
        dfs2(v,u);
        sum+=(p[v].in<=p[v].out)*(p[v].out-p[v].in+1)*w-(k-(p[v].in<=p[v].out)*(p[v].out-p[v].in+1))*w;
        if(p[v].in<=p[v].out)
        {
            update(1,1,-w);
            update(1,p[v].in,2*w);
            if(p[v].out<k) update(1,p[v].out+1,-2*w);
        }
    }
}

template<typename T>
inline void read(T &x)
{
    T k=1;char ch=getchar();x=0;
    while(ch<'0'||ch>'9'){if(ch=='-') k=-1;ch=getchar();}
    while(ch>='0'&&ch<='9')x=(x<<1)+(x<<3)+(ch^48),ch=getchar();
    x*=k;
}

signed main()
{
    read(n),read(k);
    for(int i=1,x;i<=k;i++)
    {
        read(x);
        p[x].f=true;
    }
    // if(n==1)
    // {
    //     puts("0");
    //     return 0;
    // }
    for(int i=1,u,v,w;i<=n-1;i++)
        read(u),read(v),read(w),add(u,v,w),add(v,u,w);
    dfs1(1,0,0);
    build(1,1,k);
    // printf("%lld %lld\n",sum,abs(t[1].g));
    dfs2(1,0);
    printf("%lld\n",ans);
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 7664kb

input:

5 3
3 4 5
1 2 2
2 3 4
2 5 4
3 4 6

output:

8

result:

ok 1 number(s): "8"

Test #2:

score: 0
Accepted
time: 2ms
memory: 7648kb

input:

10 3
1 7 10
7 6 3
1 8 3
3 6 3
8 6 2
4 1 1
10 6 4
2 8 3
9 10 3
5 10 3

output:

24

result:

ok 1 number(s): "24"

Test #3:

score: 0
Accepted
time: 2ms
memory: 5568kb

input:

1 1
1

output:

0

result:

ok 1 number(s): "0"

Test #4:

score: 0
Accepted
time: 15ms
memory: 11348kb

input:

100000 1
79187
72704 72659 15
32741 43496 10
21580 97447 17
55758 36700 21
32116 3643 14
60460 58764 12
75894 50624 7
58295 49393 22
43733 17210 1
58093 68769 15
1086 58916 17
25632 37710 11
49555 92976 8
32547 27060 18
84896 12811 1
3196 1242 16
18870 78236 14
2414 7945 12
48745 15399 1
17648 83791...

output:

0

result:

ok 1 number(s): "0"

Test #5:

score: 0
Accepted
time: 2ms
memory: 7644kb

input:

100 10
3 27 33 45 48 72 76 91 92 100
66 98 4
70 17 2
28 59 4
26 25 3
77 92 1
40 61 2
11 27 2
85 35 1
57 26 1
68 99 4
50 84 1
20 82 3
31 39 1
71 7 4
54 55 4
60 26 4
56 61 2
15 66 3
95 53 2
8 60 4
21 82 1
18 81 2
29 73 3
94 4 1
10 4 4
86 43 1
62 41 1
45 57 1
25 66 3
69 89 2
14 53 3
27 92 1
42 98 4
13 ...

output:

200

result:

ok 1 number(s): "200"

Test #6:

score: 0
Accepted
time: 0ms
memory: 7656kb

input:

100 90
75 17 78 84 52 69 54 24 74 35 58 51 72 7 21 70 93 15 60 87 13 40 23 92 99 53 27 22 91 46 56 86 61 19 44 98 50 28 14 12 55 64 30 80 95 38 18 43 31 89 20 16 8 65 63 79 59 34 97 25 2 11 67 71 29 9 37 76 77 26 39 68 32 62 90 10 85 49 42 45 96 83 94 3 6 100 81 57 88 47
67 65 1
43 78 4
98 71 3
71 2...

output:

1798

result:

ok 1 number(s): "1798"

Test #7:

score: 0
Accepted
time: 0ms
memory: 7672kb

input:

1000 10
111 240 479 530 572 583 644 652 753 869
121 923 2
886 685 4
446 284 4
352 250 1
540 485 2
72 154 4
522 693 3
664 917 4
792 941 3
132 832 4
709 186 3
509 114 2
824 978 2
216 265 2
138 570 1
498 959 4
434 222 1
803 693 1
253 677 4
172 463 3
383 978 2
718 959 3
369 421 4
568 454 4
256 938 1
6 1...

output:

226

result:

ok 1 number(s): "226"

Test #8:

score: 0
Accepted
time: 3ms
memory: 7672kb

input:

1000 957
233 514 228 739 827 85 840 175 766 807 19 276 549 611 145 511 895 121 116 525 280 431 810 629 990 509 542 324 241 801 849 506 178 176 49 528 221 742 444 513 111 505 442 794 107 392 291 674 298 803 198 927 738 590 706 804 860 512 421 618 697 516 335 420 418 288 544 694 330 776 104 510 621 47...

output:

32602

result:

ok 1 number(s): "32602"

Test #9:

score: -100
Wrong Answer
time: 138ms
memory: 23168kb

input:

500000 4
182462 188845 259396 281751
456733 79213 9204078
395954 45205 3919968
454058 310013 734433
433648 435834 3887333
448797 138275 9946222
385528 63721 3037094
44276 184047 1799127
169565 81666 3752583
459111 229807 5534913
374868 374333 8627923
476055 408523 2692999
445258 424229 3038119
92885...

output:

486956092

result:

wrong answer 1st numbers differ - expected: '193870600', found: '486956092'