QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#397003 | #6742. Leaves | skulker | ML | 0ms | 0kb | C++20 | 2.3kb | 2024-04-23 15:24:21 | 2024-04-23 15:24:23 |
answer
#pragma GCC optimize(2)
#include<cstdio>
#include<iostream>
#include<cstring>
#include<string>
#include<vector>
using namespace std;
int n,m;
string dp[1010][1010];
string temp[1010][1010];
//vector<int> len[1100][510];
int lf[1010];
int siz[1100];
vector<int> nex[1100];
string val[1100];
void dfs(int now){
siz[now]=1;
lf[now]=0;
if(nex[now].size()==0){
lf[now]=1;
dp[now][0]=val[now];
temp[now][0]=dp[now][0]+" ";
return ;
}
else {
for(int i=0;i<nex[now].size();i++){
dfs(nex[now][i]);
siz[now]=siz[now]+siz[nex[now][i]];
lf[now]=lf[now]+lf[nex[now][i]];
}
}
int l=nex[now][0],r=nex[now][1];
for(int i=0;i<=(siz[l]-1)/2;i++){
for(int j=0;j<=(siz[r]-1)/2&&i+j<=m;j++){
string s2=dp[l][i]+dp[r][j];
if(dp[now][i+j].size()==0){
dp[now][i+j]=s2;
temp[now][i+j]=temp[l][i]+temp[r][j];
}
else {
if(dp[now][i+j]>s2) {
dp[now][i+j]=s2;
temp[now][i+j]=temp[l][i]+temp[r][j];
}
}
}
}
l=nex[now][1],r=nex[now][0];
for(int i=0;i<=(siz[l]-1)/2;i++){
for(int j=0;j<=(siz[r]-1)/2&&i+j+1<=m;j++){
string s2=dp[l][i]+dp[r][j];
if(dp[now][i+j+1].size()==0){
dp[now][i+j+1]=s2;
temp[now][i+j+1]=temp[l][i]+temp[r][j];
}
else {
if(dp[now][i+j+1]>s2) {
dp[now][i+j+1]=s2;
temp[now][i+j+1]=temp[l][i]+temp[r][j];
}
}
}
}
}
int main(){
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
cin>>n>>m;
int u,v,w;
int opt;
for(int i=1;i<=n;i++){
cin>>opt;
if(opt==1){
cin>>u>>v;
nex[i].push_back(u);
nex[i].push_back(v);
}
else {
cin>>val[i];
}
}
dfs(1);
string ans=dp[1][m];
int pos=m;
for(int i=m-2;i>=0;i-=2){
if(ans>dp[1][i]) {
ans=dp[1][i];
// pos=i;
}
}
cout<<temp[1][pos];
}
详细
Test #1:
score: 0
Memory Limit Exceeded
input:
3 0 1 2 3 2 1 2 2
output:
1 2