QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#875424 | #4815. Flower's Land | Mirasycle | RE | 2ms | 6916kb | C++14 | 2.1kb | 2025-01-29 19:00:37 | 2025-01-29 19:00:38 |
Judging History
answer
#include<bits/stdc++.h>
#define pb emplace_back
using namespace std;
typedef long long ll;
const int maxn=4e4+10;
void cmax(int &x,int y){ x=x>y?x:y; }
int n,k,a[maxn],sz[maxn],id[maxn],rev[maxn];
vector<int> G[maxn],f[maxn],g[maxn];
vector<vector<int> > h[2]; int ans[maxn];
void dfs(int u,int fa){//初始化 f 数组
for(auto v:G[u]){
if(v==fa) continue;
dfs(v,u); sz[u]+=sz[v];
}
sz[u]++; f[u].resize(sz[u]+1,0);
}
void F(int u,int fa){//卷积 f
sz[u]=1; f[u][1]=a[u];
for(auto v:G[u]){
if(v==fa) continue;
F(v,u); sz[u]+=sz[v];
for(int i=sz[u];i>=1;i--)//从 1 开始,因为强制选择 u
for(int j=min(sz[v],k-i);j>=1;j--)
cmax(f[u][i+j],f[u][i]+f[v][j]);
}
}
void Dp(int u,int fa){//对于每个点卷积答案,然后先卷积 h,再得到 g
int S=g[u].size();//统计答案
for(int i=max(k-S+1,1);i<=min(sz[u],k);i++)
cmax(ans[u],f[u][i]+g[u][k-i]);
int c=0; sz[0]=1; rev[0]=0;
if(n!=200){
for(auto v:G[u])
if(v!=fa) rev[++c]=v,id[v]=c;
if(!c) return ;
h[0].clear(); h[1].clear();
h[0].resize(c+1); h[1].resize(c+2);
h[1][c]=f[rev[c]]; h[0][0]=g[u]; h[1][c+1].resize(1,0);
for(int v=1;v<=c;v++){
h[0][v].resize(k+1,0);
for(int i=0;i<h[0][v-1].size();i++)
for(int j=0;j<=sz[rev[v]]&&i+j<=k;j++)
cmax(h[0][v][i+j],h[0][v-1][i]+f[rev[v]][j]);
}
for(int v=c-1;v>=1;v--){
h[1][v].resize(k+1,0);
for(int i=0;i<h[1][v+1].size();i++)
for(int j=0;j<=sz[rev[v]]&&i+j<=k;j++)
cmax(h[1][v][i+j],h[1][v+1][i]+f[rev[v]][j]);
}
for(int i=1;i<=c;i++){//卷积 g
int v=rev[i],z=min(k,n-sz[v]);
g[v].resize(z+1,0);
for(int p=0;p<h[0][i-1].size();p++)
for(int q=0;q<h[1][i+1].size()&&p+q+1<=z;q++){
cmax(g[v][p+q+1],a[u]+h[0][i-1][p]+h[1][i+1][q]);
}
}
}
for(auto v:G[u])
if(v!=fa) Dp(v,u);
}
int main(){
ios::sync_with_stdio(false); cin.tie(0); cout.tie(0);
cin>>n>>k;
for(int i=1;i<=n;i++) cin>>a[i];
for(int i=1;i<=n-1;i++){
int u,v; cin>>u>>v;
G[u].pb(v); G[v].pb(u);
}
dfs(1,0); F(1,0); g[1].pb(0); Dp(1,0);
for(int i=1;i<=n;i++) cout<<ans[i]<<" ";
return 0;
}
詳細信息
Test #1:
score: 100
Accepted
time: 0ms
memory: 6728kb
input:
5 3 6 10 4 3 4 3 4 4 2 2 5 5 1
output:
20 20 17 17 20
result:
ok 5 number(s): "20 20 17 17 20"
Test #2:
score: 0
Accepted
time: 0ms
memory: 6528kb
input:
7 4 1 3 2 1 7 12 17 4 6 1 4 5 1 2 5 7 6 3 2
output:
31 13 13 31 21 31 31
result:
ok 7 numbers
Test #3:
score: 0
Accepted
time: 0ms
memory: 6604kb
input:
1 1 20
output:
20
result:
ok 1 number(s): "20"
Test #4:
score: 0
Accepted
time: 2ms
memory: 6528kb
input:
10 3 19 7 25 18 93 97 21 51 60 80 6 7 7 1 1 9 9 10 10 2 2 5 5 3 3 8 8 4
output:
159 180 169 94 180 137 137 169 159 180
result:
ok 10 numbers
Test #5:
score: 0
Accepted
time: 0ms
memory: 6600kb
input:
20 3 932 609 248 720 831 253 418 482 1000 542 436 304 217 163 872 380 704 845 497 610 17 12 1 17 15 17 13 17 2 15 16 2 18 16 8 16 4 16 19 4 6 4 20 19 10 19 9 10 5 10 7 9 3 9 14 5 11 7
output:
2508 2185 1790 1945 2373 1470 1960 1707 2373 2373 1854 1940 1853 1536 2508 1945 2508 1945 2039 1827
result:
ok 20 numbers
Test #6:
score: 0
Accepted
time: 0ms
memory: 6916kb
input:
40 5 1105 1687 737 6321 7793 7325 3443 2983 6912 6304 4211 5325 7774 7857 5121 8331 9317 1042 8291 9698 7373 440 9788 7938 7191 5563 4554 596 9733 4920 5398 3642 844 5733 4048 4417 8279 3054 4596 3153 12 17 12 36 12 15 12 13 12 2 12 30 12 18 12 33 12 4 12 39 12 25 12 20 12 10 12 9 12 23 12 29 12 3 1...
output:
35649 36231 35281 40865 42337 41869 37987 37527 41456 40848 38755 43861 42318 42401 39665 42875 43861 35586 42835 43861 41917 34984 43861 42482 41735 40107 39098 35140 43861 39464 39942 38186 35388 40277 38592 38961 42823 37598 39140 37697
result:
ok 40 numbers
Test #7:
score: 0
Accepted
time: 0ms
memory: 6400kb
input:
100 10 11845 7520 37311 70194 67214 68176 40075 13721 13118 2555 27023 65012 36716 47598 62807 83049 95169 73454 955 72471 72461 38753 7766 53638 20670 21008 37771 97099 75063 80585 66232 33603 92301 21230 20888 96576 51530 90712 95603 93535 59988 78079 96958 42006 35041 22283 35258 7871 45967 7101 ...
output:
777955 640628 803421 836304 843042 834286 806185 779831 579059 768665 688155 851049 812544 813708 791287 836304 836304 849282 767065 848299 848289 804863 773876 829466 485824 579059 803881 614459 579059 627078 585962 735460 564264 614459 688155 836304 827358 836304 851049 792569 616369 851049 792569...
result:
ok 100 numbers
Test #8:
score: -100
Runtime Error
input:
200 30 332408 397037 98648 388661 351913 146463 354518 148254 131018 214842 465228 340704 397726 443065 248835 223274 239234 260094 420186 444939 5604 433696 253672 122804 20775 178018 260524 40342 259288 399226 146027 273111 141307 489658 150962 170539 339581 10624 479316 460184 467714 261732 46024...