QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#624647#6107. One PathcjxWA 18ms102528kbC++202.6kb2024-10-09 16:19:202024-10-09 16:19:24

Judging History

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

  • [2024-10-09 16:19:24]
  • 评测
  • 测评结果:WA
  • 用时:18ms
  • 内存:102528kb
  • [2024-10-09 16:19:20]
  • 提交

answer

#include<bits/stdc++.h>
#define ll long long
#define pii pair<int,int>
#define fi first
#define se second
using namespace std;
long long read(){
	long long x=0,f=1;char ch=getchar();
	while(!isdigit(ch))
	{if(ch=='-') f=-1;ch=getchar();}
	while(isdigit(ch)){x=x*10+ch-48;ch=getchar();}
	return x*f;
}
void write(long long x){
    if(x<0) putchar('-'),x=-x;
    if(x>9) write(x/10);
    putchar(x%10+'0');
}
const int N=2010;
int n,k,sz[N];
int head[N],ver[N<<1],nxt[N<<1],tot;
ll edge[N<<1],f[N][N][3];
void add(int x,int y,ll z){
	ver[++tot]=y,edge[tot]=z,nxt[tot]=head[x],head[x]=tot;
}
void dfs1(int x,int fa){
    sz[x]=1;
    f[x][0][0]=f[x][0][1]=-1e12;
    ll g[N][3];
    for(int i=head[x];i;i=nxt[i]){
        int y=ver[i];
        if(y==fa)continue;
        dfs1(y,x);
        memset(g,0,sizeof(g));
        for(int p=sz[x];p>=0;p--){
            for(int q=0;q<=sz[y];q++){
                g[p+q][0]=max(g[p+q][0],f[x][p][0]+f[y][q][2]);
                g[p+q][0]=max(g[p+q][0],f[x][p][0]+f[y][q][1]+edge[i]);
                g[p+q][0]=max(g[p+q][0],f[x][p][2]+f[y][q][0]+edge[i]);
                g[p+q+1][0]=max(g[p+q+1][0],f[x][p][2]+f[y][q][2]+edge[i]);
                g[p+q][1]=max(g[p+q][1],f[x][p][1]+f[y][q][2]);
                g[p+q][1]=max(g[p+q][1],f[x][p][2]+f[y][q][1]);
                //g[p+q][1]=max(g[p+q][1],f[x][p][2]+f[y][q][0]+edge[i]);
                g[p+q][1]=max(g[p+q][1],f[x][p][0]+f[y][q+1][0]+edge[i]);
                g[p+q][1]=max(g[p+q][1],f[x][p][0]+f[y][q][2]+edge[i]);
                g[p+q][2]=max(g[p+q][2],f[x][p][2]+f[y][q][2]);
                g[p+q][2]=max(g[p+q][2],f[x][p][2]+f[y][q][1]+edge[i]);
            }
        }
        sz[x]+=sz[y];
        for(int p=1;p<=sz[x];p++){
            for(int j=0;j<3;j++){
                f[x][p][j]=g[p][j];
            }
        }
        /*printf("y=%d\n",y);
        for(int j=0;j<3;j++){
            printf("f[%d][%d][%d]=%lld\n",x,1,j,f[x][1][j]);
        }
        for(int j=0;j<3;j++){
            printf("f[%d][%d][%d]=%lld\n",x,2,j,f[x][2][j]);
        }*/
    }
    for(int i=1;i<=sz[x];i++)
        for(int j=0;j<3;j++){
            f[x][i][j]=max(f[x][i][j],f[x][i-1][j]);
            if(j)f[x][i][j]=max(f[x][i][j],f[x][i][j-1]);
            //printf("f[%d][%d][%d]=%lld\n",x,i,j,f[x][i][j]);
        }
}
int main(){
	//freopen(".in","r",stdin);
	//freopen(".out","w",stdout);
	n=read();k=read();
	for(int i=1;i<n;i++){
        int x=read(),y=read(),z=read();
        add(x,y,z);add(y,x,z);
    }
    dfs1(1,0);
    for(int i=0;i<=k;i++){
        printf("%lld ",f[1][min(i+1,n)][1]);
    }
    puts("");
	return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:

5 1
1 3 2
4 5 4
3 4 3
2 3 7

output:

14 16 

result:

ok 2 number(s): "14 16"

Test #2:

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

input:

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

output:

13 20 21 

result:

ok 3 number(s): "13 20 21"

Test #3:

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

input:

50 2000
3 34 1
37 39 58720256
17 24 14680064
28 39 1
25 38 1
21 29 1
3 30 1
26 36 1
5 48 14336
4 22 1
26 41 1
41 44 1
5 14 1
23 25 28672
40 41 224
27 39 1
4 20 7340032
7 47 939524096
11 46 114688
30 49 3584
34 44 1
7 35 1
10 29 1
27 33 29360128
16 36 56
8 28 1
13 38 57344
34 45 896
15 35 469762048
1...

output:

1409286145 1761607683 1849688069 1871708167 1877213193 1878589451 1878933517 1879019535 1879041041 1879046419 1879047765 1879048103 1879048160 1879048160 1879048160 1879048160 1879048160 1879048160 1879048160 1879048160 1879048160 1879048160 1879048160 1879048160 1879048160 1879048160 1879048160 187...

result:

ok 2001 numbers

Test #4:

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

input:

10 5
1 4 10
3 7 138
1 9 162
4 10 113
4 6 12
5 6 171
2 10 31
7 8 12
7 10 132

output:

566 769 781 781 781 781 

result:

ok 6 numbers

Test #5:

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

input:

2 0
1 2 340241821

output:

340241821 

result:

ok 1 number(s): "340241821"

Test #6:

score: 0
Accepted
time: 18ms
memory: 102528kb

input:

2000 0
450 1620 747893383
103 1602 466748018
746 1996 468886757
430 764 455748265
1201 1275 111041658
244 802 715844971
611 899 125646661
1105 1633 478144612
180 573 823370712
161 1018 67225549
1512 1915 538711443
829 1871 761057722
1297 1499 576790037
1492 1832 983172784
1486 1902 78076400
1206 121...

output:

83343544566 

result:

ok 1 number(s): "83343544566"

Test #7:

score: 0
Accepted
time: 1ms
memory: 3968kb

input:

2 2000
1 2 128840350

output:

128840350 128840350 128840350 128840350 128840350 128840350 128840350 128840350 128840350 128840350 128840350 128840350 128840350 128840350 128840350 128840350 128840350 128840350 128840350 128840350 128840350 128840350 128840350 128840350 128840350 128840350 128840350 128840350 128840350 128840350 ...

result:

ok 2001 numbers

Test #8:

score: -100
Wrong Answer
time: 8ms
memory: 62324kb

input:

1139 1252
115 643 947372561
358 529 121247876
22 177 680088711
70 692 912515870
602 1032 172209848
908 1064 871258945
1052 1085 268011860
88 405 978751838
65 913 486052321
75 496 113634888
654 841 834034656
209 409 142094069
674 700 147589677
828 885 666263686
486 685 480409259
111 839 151780996
634...

output:

59768151302 90240365913 110773200826 126071855751 138635934480 150183113228 161491697716 171973479232 180896150286 189526447107 198151654732 205944843996 212594288075 218867722405 224758314304 230517398967 236194246382 241771608481 247290975973 252679174462 257726719571 262623730494 267497011096 272...

result:

wrong answer 30th numbers differ - expected: '299249893481', found: '299192652229'