QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#397019 | #6742. Leaves | coldwind902 | ML | 59ms | 28364kb | C++20 | 3.1kb | 2024-04-23 15:35:07 | 2024-04-23 15:35:07 |
Judging History
answer
#include <bits/stdc++.h>
#define endl '\n'
#define alls(x) x.begin(),x.end()
using namespace std;
using i64 = long long;
using PII = pair<int, int>;
const int g = 3, mod = 1e9 + 7, INF = 0x3f3f3f3f;
const int N = 510, M = 1010;
int n, m;
int val[M], sz[M];
PII son[M];
vector<int> dp[M][M];
void add(vector<int>& a, vector<int>& b, vector<int>& c){
c = a;
for(int i : b) c.emplace_back(i);
}
inline bool check(vector<int>& a, vector<int>& b){
int sz1 = a.size(), sz2 = b.size();
int mnsz = min(sz1, sz2);
for(int i = 0; i < mnsz; ++ i){
if(a[i] < b[i]) return true;
else if(a[i] > b[i]) return false;
}
return sz1 < sz2;
}
void dfs(int u){
sz[u] = 1;
int lroot = son[u].first, rroot = son[u].second;
if(lroot != rroot){
//递归计算左右儿子
dfs(lroot);
dfs(rroot);
sz[u] += sz[lroot];
sz[u] += sz[rroot];
vector<int> res;
//计算当前点, 不交换
for(int i = 0; i <= sz[lroot] / 2; ++ i){//左儿子用i次
for(int j = 0; j <= sz[rroot] / 2; ++ j){//右儿子j次
res.clear();
// add(dp[lroot][i], dp[rroot][j], res);
res.insert(res.end(), alls(dp[lroot][i]));
res.insert(res.end(), alls(dp[rroot][j]));
if(dp[u][i + j].empty()) dp[u][i + j] = res;
else if(res < dp[u][i + j]) dp[u][i + j] = res;
}
}
//交换
for(int i = 0; i <= sz[lroot] / 2; ++ i){//左儿子用i次
for(int j = 0; j <= sz[rroot] / 2; ++ j){//右儿子j次
res.clear();
res.insert(res.end(), alls(dp[rroot][j]));
res.insert(res.end(), alls(dp[lroot][i]));
if(dp[u][i + j + 1].empty()) dp[u][i + j + 1] = res;
else if(res < dp[u][i + j + 1]) dp[u][i + j + 1] = res;
}
}
}
else{//叶节点,无论怎么变化都一样的
for(int i = 0; i <= m; ++ i)
dp[u][i].emplace_back(val[u]);
}
}
void solve() {
cin >> n >> m;
for(int i = 1; i <= n; ++ i)
for(int j = 0; j <= m; ++ j)
dp[i][j] = vector<int>();
int op, l, r;
for(int i = 1; i <= n; ++ i){
cin >> op;
if(op == 1){
cin >> l >> r;
son[i] = {l, r};
}
else {
cin >> l;//叶节点
val[i] = l;
}
}
if(n == 1){
cout << val[1] << endl;
return;
}
dfs(1);
vector<int> ans = dp[1][m];
//两次操作可以重复,这样就能抵消掉他们
for(int i = m; i >= 0; i -= 2)
if(dp[1][i] < ans) ans = dp[1][i];
for(int j : ans)
cout << j << ' ';
cout << endl;
}
signed main() {
#ifdef ONLINE_JUDGE
#else
freopen("902.in", "r", stdin);
freopen("902.out", "w", stdout);
#endif
ios::sync_with_stdio(false);
cin.tie(0), cout.tie(0);
int t = 1;
// cin >> t;
for (int i = 1; i <= t; i++) {
solve();
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 2ms
memory: 3612kb
input:
3 0 1 2 3 2 1 2 2
output:
1 2
result:
ok 2 number(s): "1 2"
Test #2:
score: 0
Accepted
time: 2ms
memory: 3632kb
input:
7 1 1 2 3 1 4 5 1 6 7 2 4 2 2 2 3 2 1
output:
2 4 3 1
result:
ok 4 number(s): "2 4 3 1"
Test #3:
score: 0
Accepted
time: 2ms
memory: 3696kb
input:
7 2 1 2 3 1 4 5 1 6 7 2 4 2 2 2 3 2 1
output:
1 3 4 2
result:
ok 4 number(s): "1 3 4 2"
Test #4:
score: 0
Accepted
time: 2ms
memory: 3588kb
input:
1 0 2 1000000000
output:
1000000000
result:
ok 1 number(s): "1000000000"
Test #5:
score: 0
Accepted
time: 2ms
memory: 3660kb
input:
3 1 1 2 3 2 1 2 2
output:
2 1
result:
ok 2 number(s): "2 1"
Test #6:
score: 0
Accepted
time: 2ms
memory: 3856kb
input:
7 2 1 2 3 1 4 5 1 6 7 2 1 2 2 2 3 2 4
output:
1 2 3 4
result:
ok 4 number(s): "1 2 3 4"
Test #7:
score: 0
Accepted
time: 55ms
memory: 28188kb
input:
999 480 1 3 2 1 4 5 1 6 7 1 9 8 1 10 11 1 13 12 1 14 15 1 16 17 1 19 18 1 21 20 1 23 22 1 25 24 1 27 26 1 28 29 1 30 31 1 33 32 1 35 34 1 37 36 1 38 39 1 41 40 1 42 43 1 45 44 1 46 47 1 48 49 1 51 50 1 52 53 1 55 54 1 56 57 1 58 59 1 61 60 1 62 63 1 64 65 1 67 66 1 69 68 1 71 70 1 73 72 1 74 75 1 76...
output:
34826804 763875883 763875883 763875883 763875883 763875883 763875883 763875883 248820103 763875883 763875883 763875883 763875883 763875883 763875883 763875883 763875883 763875883 763875883 763875883 763875883 763875883 763875883 763875883 763875883 763875883 763875883 763875883 763875883 763875883 7...
result:
ok 500 numbers
Test #8:
score: 0
Accepted
time: 59ms
memory: 28148kb
input:
999 480 1 2 3 1 4 5 1 7 6 1 8 9 1 10 11 1 13 12 1 15 14 1 17 16 1 19 18 1 21 20 1 23 22 1 24 25 1 26 27 1 28 29 1 31 30 1 32 33 1 34 35 1 37 36 1 38 39 1 41 40 1 42 43 1 44 45 1 46 47 1 48 49 1 51 50 1 52 53 1 54 55 1 57 56 1 58 59 1 60 61 1 62 63 1 65 64 1 66 67 1 69 68 1 71 70 1 72 73 1 75 74 1 77...
output:
530024839 530024839 530024839 530024839 530024839 530024839 530024839 530024839 530024839 530024839 530024839 530024839 530024839 530024839 530024839 530024839 530024839 530024839 530024839 530024839 530024839 530024839 530024839 530024839 530024839 530024839 530024839 530024839 530024839 530024839 ...
result:
ok 500 numbers
Test #9:
score: 0
Accepted
time: 28ms
memory: 28364kb
input:
999 480 1 3 2 1 5 4 1 7 6 1 8 9 1 10 11 1 13 12 1 15 14 1 17 16 1 18 19 1 21 20 1 23 22 1 25 24 1 26 27 1 29 28 1 31 30 1 33 32 1 34 35 1 37 36 1 38 39 1 41 40 1 43 42 1 45 44 1 47 46 1 49 48 1 50 51 1 52 53 1 54 55 1 56 57 1 59 58 1 60 61 1 62 63 1 65 64 1 67 66 1 69 68 1 71 70 1 73 72 1 74 75 1 76...
output:
507922 928353918 51892154 809031414 296508656 801553730 385852006 930053625 95913518 431154803 117002192 187199343 405980569 664093190 478863675 930428963 3440725 490128679 92302056 563992614 27927487 246777697 168388113 922508131 52386784 780998040 438167217 876407248 158186938 633166175 788275543 ...
result:
ok 500 numbers
Test #10:
score: 0
Accepted
time: 20ms
memory: 28360kb
input:
999 480 1 3 2 1 4 5 1 7 6 1 8 9 1 10 11 1 13 12 1 15 14 1 16 17 1 19 18 1 21 20 1 23 22 1 24 25 1 26 27 1 29 28 1 30 31 1 32 33 1 35 34 1 37 36 1 38 39 1 41 40 1 43 42 1 45 44 1 46 47 1 48 49 1 50 51 1 52 53 1 54 55 1 56 57 1 58 59 1 60 61 1 63 62 1 65 64 1 66 67 1 68 69 1 70 71 1 72 73 1 74 75 1 76...
output:
666292 26210483 65023030 95745223 11431606 30237589 40996997 59830702 14512182 24640163 39361368 85684143 17020177 58437715 74457645 91998540 7557034 46923480 16066480 33921131 14512182 83949838 22501176 83949838 15127734 18414338 52979072 81930757 24640163 70913581 72929459 78973167 3687875 4610266...
result:
ok 500 numbers
Test #11:
score: 0
Accepted
time: 34ms
memory: 28296kb
input:
999 480 1 3 2 1 4 5 1 7 6 1 9 8 1 10 11 1 13 12 1 15 14 1 16 17 1 18 19 1 20 21 1 23 22 1 24 25 1 27 26 1 29 28 1 30 31 1 33 32 1 34 35 1 37 36 1 39 38 1 40 41 1 42 43 1 44 45 1 47 46 1 48 49 1 50 51 1 52 53 1 55 54 1 56 57 1 59 58 1 60 61 1 62 63 1 64 65 1 66 67 1 68 69 1 70 71 1 72 73 1 75 74 1 77...
output:
874376 19021636 10912872 49114704 21454471 94310772 60086613 88323254 20181141 62658098 54568372 64872279 21454471 30659919 73483837 98385133 12300384 74080822 54568372 100102768 29770805 62658098 33159023 62908008 33159023 98943188 52580720 64872279 58787422 98644936 73687255 98385133 10912872 9838...
result:
ok 500 numbers
Test #12:
score: -100
Memory Limit Exceeded
input:
905 52 1 3 2 2 25780328 1 4 5 2 84996992 1 6 7 2 43060692 1 8 9 2 58356233 1 11 10 2 48172306 1 12 13 2 94654986 1 14 15 2 66085196 1 17 16 2 43141873 1 18 19 2 58356233 1 21 20 2 58356233 1 22 23 2 64124892 1 24 25 2 55464563 1 27 26 2 46324683 1 29 28 2 78919648 1 30 31 2 13379324 1 32 33 2 960564...
output:
612429 612429 11385745 15524596 27354220 30826255 44403070 95193352 30760083 84996992 87443977 43060692 49958425 13964121 91042474 36461317 15704020 17411083 64017133 36129702 78978485 64017133 17411083 36057170 100691869 58356233 19600883 97205832 56442997 15704020 11168414 91042474 36057170 789196...