QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#194356#7513. Palindromic Beadsucup-team1191#WA 273ms73048kbC++204.8kb2023-09-30 20:19:252024-10-14 18:02:28

Judging History

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

  • [2024-10-14 18:02:28]
  • 管理员手动重测本题所有获得100分的提交记录
  • 测评结果:WA
  • 用时:273ms
  • 内存:73048kb
  • [2024-03-27 16:34:54]
  • hack成功,自动添加数据
  • (/hack/584)
  • [2024-03-27 16:18:45]
  • hack成功,自动添加数据
  • (/hack/583)
  • [2023-09-30 20:19:26]
  • 评测
  • 测评结果:100
  • 用时:238ms
  • 内存:72904kb
  • [2023-09-30 20:19:25]
  • 提交

answer

#include <bits/stdc++.h>

using namespace std;

typedef long long ll;
typedef long double ld;
#define TIME (clock() * 1.0 / CLOCKS_PER_SEC)

const int M = 2e5 + 239;
const int T = (1 << 19) + 239;
const int L = 18;
const int BIG = 1e9 + 239;

int mx[T];

void build(int i, int l, int r) {
    mx[i] = -BIG;
    if (r - l == 1) {
        return;
    }
    int mid = (l + r) / 2;
    build(2 * i + 1, l, mid);
    build(2 * i + 2, mid, r);
}

void upd(int i, int l, int r, int p, int x) {
    if (r - l == 1) {
        mx[i] = x;
        return;
    }
    int mid = (l + r) / 2;
    if (p < mid) {
        upd(2 * i + 1, l, mid, p, x);
    } else {
        upd(2 * i + 2, mid, r, p, x);
    }
    mx[i] = max(mx[2 * i + 1], mx[2 * i + 2]);
}

int getmax(int i, int l, int r, int ql, int qr) {
    if (r <= ql || qr <= l) {
        return -BIG;
    }
    if (ql <= l && r <= qr) {
        return mx[i];
    }
    int mid = (l + r) / 2;
    return max(getmax(2 * i + 1, l, mid, ql, qr), getmax(2 * i + 2, mid, r, ql, qr));
}

int n, c[M];
vector<int> v[M];

int dp[M][L];
int h[M];
int sz[M];

void dfs_pre(int p, int ls) {
    if (ls == -1) {
        h[p] = 0;
        for (int i = 0; i < L; i++) {
            dp[p][i] = p;
        }
    } else {
        h[p] = h[ls] + 1;
        dp[p][0] = ls;
        for (int i = 1; i < L; i++) {
            dp[p][i] = dp[dp[p][i - 1]][i - 1];
        }
    }
    sz[p] = 1;
    for (int i : v[p]) {
        if (i != ls) {
            dfs_pre(i, p);
            sz[p] += sz[i];
        }
    }
}

int tin[M], tout[M], timer, et[M], go[M];
vector<int> to[M];

void dfs_hld(int p, int ls) {
    et[timer] = p;
    tin[p] = timer++;

    int best = -1;
    for (int i : v[p]) {
        if (i != ls) {
            if (best == -1 || sz[best] < sz[i]) {
                best = i;
            }
        }
    }

    if (best != -1) {
        to[p].emplace_back(best);
        go[best] = go[p];
        dfs_hld(best, p);
        for (int i : v[p]) {
            if (i != ls && i != best) {
                go[i] = i;
                dfs_hld(i, p);
                to[p].emplace_back(i);
            }
        }
    }

    tout[p] = timer;
}

bool upper(int s, int f) {
    return tin[s] <= tin[f] && tout[f] <= tout[s];
}

int lca(int s, int f) {
    if (upper(s, f)) {
        return s;
    }
    for (int i = L - 1; i >= 0; i--) {
        if (!upper(dp[s][i], f)) {
            s = dp[s][i];
        }
    }
    return dp[s][0];
}

vector<int> in[M];
bool is_main[M];
int lc[M];

int ans[M];

int getmax(int s, int f) {
    int res = -BIG;
    while (true) {
        bool stop = false;
        int x = go[f];
        if (upper(x, s)) {
            x = s;
            stop = true;
        }
        res = max(res, getmax(0, 0, n, tin[x], tin[f] + 1));
        if (stop) {
            return res;
        }
        f = dp[x][0];
    }
}

void dfs_ans(int p) {
    if (is_main[p]) {
        ans[p] = 2;
        if (in[c[p]][1] != dp[p][0]) {
            ans[p] = 3;
        }
        int u = max(getmax(lc[c[p]], p), getmax(lc[c[p]], in[c[p]][1]));
        if (u >= 0) {
            ans[p] = max(ans[p], u + 2);
        }
        upd(0, 0, n, tin[in[c[p]][1]], ans[p]);
    }

    for (int i : to[p]) {
        dfs_ans(i);
    }

    if (is_main[p]) {
        upd(0, 0, n, tin[in[c[p]][1]], -BIG);
    }
}

void solve() {
    cin >> n;
    for (int i = 0; i < n; i++) {
        cin >> c[i];
        c[i]--;
        in[c[i]].emplace_back(i);
    }
    for (int i = 0; i < n - 1; i++) {
        int s, f;
        cin >> s >> f;
        s--, f--;
        v[s].emplace_back(f);
        v[f].emplace_back(s);
    }
    dfs_pre(0, -1);
    dfs_hld(0, -1);
    for (int x = 0; x < n; x++) {
        if (in[x].size() == 2) {
            int s = in[x][0];
            int f = in[x][1];
            lc[x] = lca(s, f);
            if (upper(s, f)) {
                in[x][0] = f;
                in[x][1] = s;
                is_main[f] = true;
                continue;
            }
            if (upper(f, s)) {
                is_main[s] = true;
                continue;
            }
            if (tin[s] < tin[f]) {
                is_main[s] = true;
            } else {
                in[x][0] = f;
                in[x][1] = s;
                is_main[f] = true;
            }
        }
    }
    build(0, 0, n);
    dfs_ans(0);
    int cur = 1;
    for (int i = 0; i < n; i++) {
        cur = max(cur, ans[i]);
    }
    cout << cur << "\n";
}

int main() {
#ifdef ONPC
    freopen("input", "r", stdin);
#endif
    ios::sync_with_stdio(0); cin.tie(0); cout.tie(0);

    int t = 1;
    //cin >> t;
    while (t--) {
        solve();
    }

    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 2ms
memory: 9688kb

input:

4
1 1 2 2
1 2
2 3
2 4

output:

3

result:

ok single line: '3'

Test #2:

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

input:

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

output:

4

result:

ok single line: '4'

Test #3:

score: 0
Accepted
time: 3ms
memory: 13840kb

input:

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

output:

2

result:

ok single line: '2'

Test #4:

score: 0
Accepted
time: 2ms
memory: 9792kb

input:

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

output:

1

result:

ok single line: '1'

Test #5:

score: 0
Accepted
time: 3ms
memory: 10068kb

input:

2000
845 1171 345 282 1181 625 754 289 681 493 423 840 1494 318 266 1267 967 379 135 14 39 191 60 972 116 1216 1205 19 194 185 1360 861 379 430 1262 1151 756 65 389 488 277 53 1283 1438 101 1465 195 714 737 980 80 298 961 1326 163 1163 1317 1152 992 35 334 802 1502 486 710 234 555 88 1278 146 46 696...

output:

5

result:

ok single line: '5'

Test #6:

score: 0
Accepted
time: 273ms
memory: 51592kb

input:

200000
48015 47923 20609 71806 43752 68214 95683 89449 25809 58110 19878 52931 7845 45206 86245 82945 62977 37876 12456 105915 10509 92943 66950 88545 26442 26545 42278 66977 3970 9631 21524 43638 7979 58240 25719 56260 276 89721 9553 16550 52161 30307 82748 108443 36676 48581 59069 57412 62453 7965...

output:

5

result:

ok single line: '5'

Test #7:

score: 0
Accepted
time: 261ms
memory: 51776kb

input:

200000
13011 51198 65374 107045 66506 14385 35784 94265 71449 41817 24646 60714 53382 68358 9354 840 3139 71282 72215 69550 2121 41498 13675 76444 67690 40513 56439 12832 51976 35333 47208 59602 98993 9383 77866 10464 41517 89125 58804 91741 66160 74208 70991 63865 84870 14282 2441 78046 73372 36311...

output:

7

result:

ok single line: '7'

Test #8:

score: 0
Accepted
time: 244ms
memory: 52776kb

input:

200000
38715 33241 65919 39407 27500 36200 2259 42301 79147 57505 20 81399 69499 23658 14534 86934 14352 69558 59763 43318 35360 3281 38188 40058 40571 103709 75625 8434 53802 87159 98628 69421 53711 47986 18350 6079 37362 39377 71936 89573 25983 66882 48999 58918 66432 17453 82515 9588 95375 87287 ...

output:

45

result:

ok single line: '45'

Test #9:

score: 0
Accepted
time: 248ms
memory: 54568kb

input:

200000
36449 57574 3145 38591 832 17710 66613 78947 27635 83275 89878 48329 94614 584 96832 9321 72046 44873 5396 61452 63224 63740 26579 13706 108490 19092 89439 85884 12016 5105 48638 74004 41569 35006 22276 45609 25350 49906 35479 15875 68938 77699 48828 21628 11242 77040 70838 45771 27704 64865 ...

output:

135

result:

ok single line: '135'

Test #10:

score: 0
Accepted
time: 252ms
memory: 62280kb

input:

200000
13528 65006 30352 8565 36687 6748 5507 44320 7189 17847 46996 82728 102722 4727 36914 74228 21460 87970 11733 47170 67282 104558 66436 64504 57055 88619 42995 25569 101298 90984 76491 51994 62257 103424 8221 69668 99170 6808 29043 73058 5277 26614 23654 25152 64939 38418 78518 5330 37531 4305...

output:

425

result:

ok single line: '425'

Test #11:

score: 0
Accepted
time: 249ms
memory: 73048kb

input:

200000
92279 5566 62695 50240 45387 51097 57743 94873 53220 29260 72584 38043 86335 33441 12946 30267 12932 18258 4560 8896 64393 39608 53183 34285 36518 18501 51940 8658 101018 48522 21336 104735 25785 73132 33489 81905 94563 18128 87872 24765 54563 57218 61869 50458 75919 63764 48155 4489 35212 44...

output:

839

result:

ok single line: '839'

Test #12:

score: 0
Accepted
time: 264ms
memory: 52208kb

input:

200000
96438 84772 88103 81186 60908 116093 94738 28602 35022 91108 60687 75572 100094 50553 58445 117024 96154 53539 23185 112280 90369 32413 95244 11077 91008 109781 6404 2285 3544 111712 49414 10399 113626 81435 11321 52557 17023 113260 14225 66464 61352 98403 36521 110038 57172 42868 68512 69031...

output:

31

result:

ok single line: '31'

Test #13:

score: 0
Accepted
time: 252ms
memory: 53200kb

input:

200000
50750 86282 92049 114579 8296 28675 45880 47381 71400 43379 111535 32316 37104 35968 100241 6914 81284 48969 62890 63486 107557 80178 76322 31515 24682 85646 12681 106054 5167 50339 39004 16152 112081 10605 66750 51623 96332 77287 75452 50609 1549 1652 45229 73171 10015 66323 90164 97491 1007...

output:

8108

result:

ok single line: '8108'

Test #14:

score: 0
Accepted
time: 258ms
memory: 63136kb

input:

200000
103710 58811 65880 57203 97861 52397 63433 39586 97768 103209 103882 94183 50235 39832 92390 90699 48046 43740 86592 19659 27107 39892 7594 27400 95581 16516 29641 51389 17391 97193 93724 70446 91047 67946 5821 96978 101553 35096 54450 104968 93366 64974 46399 81084 97703 64161 38168 55002 10...

output:

16254

result:

ok single line: '16254'

Test #15:

score: 0
Accepted
time: 225ms
memory: 62072kb

input:

200000
88202 74369 54948 48433 90064 106858 57479 24810 31634 66587 14453 9546 77108 81830 36583 76158 5411 103453 9138 44425 55569 108655 29336 6156 33 78407 12653 61049 89911 48056 85840 41409 60932 69039 50823 604 57680 30956 7683 35427 99677 86508 44657 42731 105490 13120 101415 3024 32965 10326...

output:

4

result:

ok single line: '4'

Test #16:

score: 0
Accepted
time: 265ms
memory: 52168kb

input:

200000
10797 110783 14050 78735 2502 18514 116854 6066 7024 88298 49894 5068 113306 111164 293 38365 84020 117567 109538 103830 69630 28231 107911 18477 95413 78305 59492 112114 12973 20189 93556 49731 50223 69605 54609 74804 42990 28998 22878 45999 93363 7282 71880 49057 46461 94559 53582 109357 25...

output:

6

result:

ok single line: '6'

Test #17:

score: 0
Accepted
time: 233ms
memory: 51584kb

input:

200000
48737 28745 46719 51708 55344 100505 22387 88659 52750 92399 63371 63773 69558 28543 3923 23010 101235 32115 106541 2327 42175 67610 109244 77794 49476 70063 4296 22615 9227 107435 58380 27995 78950 8976 80501 71538 73668 82538 68732 86931 19515 54326 85071 28871 46614 56610 53551 67531 47246...

output:

5

result:

ok single line: '5'

Test #18:

score: 0
Accepted
time: 202ms
memory: 51320kb

input:

200000
26426 62873 30891 26591 23480 10950 50429 4430 25803 27494 14124 45946 2115 72645 23096 45892 34188 62963 63230 4026 19204 52592 84051 81275 101029 63022 83786 69487 46792 97893 25402 11283 50048 59942 53521 52133 12216 16801 24535 31962 102839 71080 53210 8687 6049 56323 74430 81175 55370 64...

output:

5

result:

ok single line: '5'

Test #19:

score: 0
Accepted
time: 195ms
memory: 50764kb

input:

200000
64192 51123 57775 25958 30138 51389 48055 24350 73959 42882 73159 20060 24764 56730 79344 32622 98700 1752 102538 20803 89788 11428 16935 19307 25767 38250 64733 76253 69835 40964 8146 21818 64392 104263 78420 57145 46240 44745 28359 28598 38527 60156 9818 30837 20404 99634 75031 71165 60654 ...

output:

4

result:

ok single line: '4'

Test #20:

score: 0
Accepted
time: 169ms
memory: 50252kb

input:

200000
30875 49873 48854 101512 66585 67679 13806 38786 40598 83034 6738 61701 26783 17734 29228 34850 55071 61098 88072 20496 60333 53325 32602 102521 99956 17288 105589 74068 66276 21670 78040 75943 2292 87380 76885 55439 897 82814 36764 80920 53230 16085 36883 61234 106576 28271 6915 11089 21463 ...

output:

3

result:

ok single line: '3'

Test #21:

score: 0
Accepted
time: 156ms
memory: 45668kb

input:

200000
75618 85661 92814 29954 24466 50323 95886 9384 11050 57981 86917 38495 12021 82933 13692 5285 32566 29306 59046 47309 90373 70494 81527 6001 62574 94496 70347 31615 21329 91026 46255 26717 108227 71208 49245 29004 99849 61951 46547 72596 51712 22511 4844 20109 60399 24412 104182 14880 40185 2...

output:

3

result:

ok single line: '3'

Extra Test:

score: -3
Extra Test Failed : Wrong Answer on 1
time: 3ms
memory: 13868kb

input:

9
1 4 5 6 7 2 1 3 2
1 2
2 3
3 4
4 5
5 6
1 7
7 8
8 9

output:

3

result:

wrong answer 1st lines differ - expected: '4', found: '3'