QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#602829 | #9230. Routing K-Codes | JDScript0117 | WA | 66ms | 16472kb | C++17 | 4.1kb | 2024-10-01 13:02:20 | 2024-10-01 13:02:22 |
Judging History
answer
#include <cstdio>
#include <algorithm>
using namespace std;
struct Func {
long long k, b;
};
int n, m, head[200000], to[400000], nxt[400000], out[400000], vst[400000], u, v;
int rt, flag, root_depth[200000], depth[200000], tree_depth[200000], sons[200000][2], l[200000];
Func tree_func[200000];
long long ans = 1e18;
Func make(long long k, long long b) {
Func nw;
nw.k = k;
nw.b = b;
return nw;
}
long long getValue(Func f, long long x) {
return f.k * x + f.b;
}
Func grower(Func a) {
return make((a.k << 1) + 1, a.b);
}
Func combine(Func a, Func b) {
return make((a.k + b.k << 1) + 1, a.b + b.b + min(a.k, b.k));
}
void add(int id, int u, int v) {
to[id] = v;
nxt[id] = head[u];
head[u] = id;
out[u] ++;
return;
}
void init() {
scanf("%d %d", &n, &m);
for (int i = 0; i < n; i ++) {
head[i] = -1;
}
for (int i = 0; i < m; i ++) {
scanf("%d %d", &u, &v);
add(i << 1, u - 1, v - 1);
add(i << 1 | 1, v - 1, u - 1);
}
return;
}
void buildTree(int id, int fa) {
l[id] = 0;
for (int i = head[id]; i >= 0; i = nxt[i]) {
if (to[i] ^ fa) {
sons[id][l[id] ++] = to[i];
buildTree(to[i], id);
}
}
return;
}
void initDepth(int id) {
tree_depth[id] = depth[id];
for (int i = 0; i < l[id]; i ++) {
depth[sons[id][i]] = depth[id] + 1;
initDepth(sons[id][i]);
tree_depth[id] = max(tree_depth[sons[id][i]], tree_depth[id]);
}
return;
}
void initRootDepth(int id, int up) {
root_depth[id] = max(tree_depth[id], up);
if (l[id] == 1) {
initRootDepth(sons[id][0], up + 1);
} else if (l[id] == 2) {
initRootDepth(sons[id][0], max(up, tree_depth[sons[id][1]] - depth[id]) + 1);
initRootDepth(sons[id][1], max(up, tree_depth[sons[id][0]] - depth[id]) + 1);
}
return;
}
void initFunc(int id) {
Func f[2];
for (int i = 0; i < l[id]; i ++) {
initFunc(sons[id][i]);
f[i] = tree_func[sons[id][i]];
}
if (l[id] == 0) {
tree_func[id] = make(1, 0);
} else if (l[id] == 1) {
tree_func[id] = grower(f[0]);
} else if (l[id] == 2) {
tree_func[id] = combine(f[0], f[1]);
}
return;
}
void build() {
if (m ^ n - 1) {
flag = 1;
return;
}
for (int i = 0; i < n; i ++) {
if (out[i] > 3) {
flag = 1;
return;
}
}
for (rt = 0; rt < n; rt ++) {
if (out[rt] ^ 3) {
break;
}
}
buildTree(rt, rt);
initDepth(rt);
initRootDepth(rt, 0);
for (rt = 0; rt < n; rt ++) {
if (out[rt] + root_depth[rt] <= 33 && (out[rt] ^ 3)) {
break;
}
}
if (rt == n) {
flag = 1;
return;
}
buildTree(rt, rt);
initDepth(rt);
initFunc(rt);
return;
}
void calculatetMin(int id, Func f) {
if (out[rt] + root_depth[rt] <= 33 && (out[rt] ^ 3)) {
if (id == rt) {
if (l[id] == 1) {
ans = min(ans, getValue(tree_func[sons[id][0]], 1));
} else if (l[id] == 2) {
ans = min(ans, getValue(tree_func[id], 1));
}
} else {
if (l[id] == 0) {
ans = min(ans, getValue(f, 1));
} else if (l[id] == 1) {
ans = min(ans, getValue(combine(tree_func[sons[id][0]], f), 1));
}
}
}
if (l[id] == 1) {
calculatetMin(sons[id][0], grower(f));
} else if (l[id] == 2) {
calculatetMin(sons[id][0], combine(tree_func[sons[id][1]], f));
calculatetMin(sons[id][1], combine(tree_func[sons[id][0]], f));
}
return;
}
void calculate() {
if (flag) {
printf("NIE\n");
} else {
calculatetMin(rt, make(0, 0));
printf("%lld\n", ans);
}
return;
}
void solve() {
init();
build();
calculate();
return;
}
int main() {
solve();
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 2ms
memory: 9856kb
input:
4 3 1 2 1 3 1 4
output:
6
result:
ok single line: '6'
Test #2:
score: 0
Accepted
time: 1ms
memory: 7680kb
input:
4 6 1 2 2 3 3 4 4 1 1 3 2 4
output:
NIE
result:
ok single line: 'NIE'
Test #3:
score: 0
Accepted
time: 0ms
memory: 9736kb
input:
10 10 9 3 5 10 1 4 10 8 8 3 7 3 9 6 8 6 7 2 4 5
output:
NIE
result:
ok single line: 'NIE'
Test #4:
score: 0
Accepted
time: 45ms
memory: 14036kb
input:
200000 199999 172774 188052 195063 155577 38023 148303 30605 155047 170238 19344 46835 58255 154268 109062 197059 116041 136424 12058 42062 149807 109545 115380 132322 51106 16706 162612 62234 31319 195735 80435 173898 84051 19876 102910 186924 9136 123094 117097 145054 173049 137364 152731 82662 18...
output:
NIE
result:
ok single line: 'NIE'
Test #5:
score: 0
Accepted
time: 62ms
memory: 16448kb
input:
200000 199999 168192 30733 164413 46673 175210 2329 69389 67102 33991 152553 91061 55265 166724 117726 90148 157176 34831 12213 60756 105488 121891 155192 82202 155666 102083 156661 38968 75200 190004 107321 72436 92732 64314 65004 39210 91106 70455 173568 179742 29844 126232 19552 133509 110602 131...
output:
20980030044349
result:
ok single line: '20980030044349'
Test #6:
score: 0
Accepted
time: 0ms
memory: 11868kb
input:
4 3 1 2 1 3 1 4
output:
6
result:
ok single line: '6'
Test #7:
score: 0
Accepted
time: 45ms
memory: 14952kb
input:
199021 199020 189105 111001 147300 187047 67395 102319 25317 152109 56495 115535 11656 19974 119178 6528 84571 159100 198873 156684 21161 163040 91720 165273 168305 140152 104884 119802 131 177991 35930 74934 27528 278 177640 162738 118439 69472 20365 85043 184995 54207 64542 188847 97881 167717 188...
output:
NIE
result:
ok single line: 'NIE'
Test #8:
score: 0
Accepted
time: 50ms
memory: 16460kb
input:
200000 199999 145608 31176 94180 155303 112924 85699 196865 176102 34049 30841 84924 191665 164317 97582 10102 125492 114493 20622 127660 194591 183851 21461 167689 53839 59189 126425 135853 79950 173910 4196 8134 182272 42157 63799 5109 182005 197391 154014 93467 130380 1508 66644 129681 199910 677...
output:
25146839515965
result:
ok single line: '25146839515965'
Test #9:
score: 0
Accepted
time: 65ms
memory: 16472kb
input:
200000 199999 160386 189041 24452 73297 75992 87415 87012 116413 18645 2219 151007 100916 87623 77520 51217 45179 51633 67938 183428 99891 74684 129965 186795 70345 28743 22633 107782 28087 117185 78477 46846 176763 18968 80952 118201 35872 123906 140127 65784 66684 24802 134847 42591 150517 27123 1...
output:
9894117829832
result:
ok single line: '9894117829832'
Test #10:
score: -100
Wrong Answer
time: 66ms
memory: 16468kb
input:
200000 199999 42958 26294 73743 94861 161036 525 22581 6649 152064 106483 126795 178801 147721 107972 43433 197974 75281 163319 170596 167054 180443 168322 1443 163261 197722 164837 144573 16585 6005 143774 195029 188032 112864 105465 108330 154314 138435 103667 66734 146178 15416 123293 22322 10216...
output:
-9187736683542389230
result:
wrong answer 1st lines differ - expected: '28756428378750', found: '-9187736683542389230'