QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#76858#5502. Dazzling MountainrniyaAC ✓4440ms283332kbC++173.3kb2023-02-12 13:37:382023-02-12 13:37:40

Judging History

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

  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2023-02-12 13:37:40]
  • 评测
  • 测评结果:AC
  • 用时:4440ms
  • 内存:283332kb
  • [2023-02-12 13:37:38]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define ALL(x) (x).begin(), (x).end()
#ifdef LOCAL
#include "debug.hpp"
#else
#define debug(...) void(0)
#endif

template <typename T> istream& operator>>(istream& is, vector<T>& v) {
    for (T& x : v) is >> x;
    return is;
}
template <typename T> ostream& operator<<(ostream& os, const vector<T>& v) {
    for (size_t i = 0; i < v.size(); i++) {
        os << v[i] << (i + 1 == v.size() ? "" : " ");
    }
    return os;
}

template <typename T> T gcd(T x, T y) { return y != 0 ? gcd(y, x % y) : x; }
template <typename T> T lcm(T x, T y) { return x / gcd(x, y) * y; }

int topbit(signed t) { return t == 0 ? -1 : 31 - __builtin_clz(t); }
int topbit(long long t) { return t == 0 ? -1 : 63 - __builtin_clzll(t); }
int botbit(signed a) { return a == 0 ? 32 : __builtin_ctz(a); }
int botbit(long long a) { return a == 0 ? 64 : __builtin_ctzll(a); }
int popcount(signed t) { return __builtin_popcount(t); }
int popcount(long long t) { return __builtin_popcountll(t); }
bool ispow2(int i) { return i && (i & -i) == i; }
long long MSK(int n) { return (1LL << n) - 1; }

template <class T> T ceil(T x, T y) {
    assert(y >= 1);
    return (x > 0 ? (x + y - 1) / y : x / y);
}
template <class T> T floor(T x, T y) {
    assert(y >= 1);
    return (x > 0 ? x / y : (x - y + 1) / y);
}

template <class T1, class T2> inline bool chmin(T1& a, T2 b) {
    if (a > b) {
        a = b;
        return true;
    }
    return false;
}
template <class T1, class T2> inline bool chmax(T1& a, T2 b) {
    if (a < b) {
        a = b;
        return true;
    }
    return false;
}

template <typename T> void mkuni(vector<T>& v) {
    sort(v.begin(), v.end());
    v.erase(unique(v.begin(), v.end()), v.end());
}
template <typename T> int lwb(const vector<T>& v, const T& x) { return lower_bound(v.begin(), v.end(), x) - v.begin(); }

const int INF = (1 << 30) - 1;
const long long IINF = (1LL << 60) - 1;
const int dx[4] = {1, 0, -1, 0}, dy[4] = {0, 1, 0, -1};
const int MOD = 998244353;
// const int MOD = 1000000007;

void solve() {
    int n;
    cin >> n;
    vector<vector<int>> G(n);
    for (int i = 0; i < n - 1; i++) {
        int a, b;
        cin >> a >> b;
        a--, b--;
        G[a].emplace_back(b);
        G[b].emplace_back(a);
    }

    vector<int> sub(n, 1);
    auto dfs = [&](auto self, int v, int p) -> set<int> {
        set<int> s;
        bool first = true;
        for (int& u : G[v]) {
            if (u == p) continue;
            auto ch = self(self, u, v);
            sub[v] += sub[u];
            if (first) {
                swap(s, ch);
                first = false;
                continue;
            }
            if (s.size() > ch.size()) swap(s, ch);
            set<int> ns;
            for (int x : s) {
                if (ch.count(x)) {
                    ns.emplace(x);
                }
            }
            swap(s, ns);
        }
        s.emplace(sub[v]);
        return s;
    };

    auto res = dfs(dfs, 0, -1);
    vector<int> ans;
    for (int x : res) ans.emplace_back(x);
    cout << ans.size() << '\n';
    cout << ans << '\n';
}

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);
    int z;
    cin >> z;
    for (; z--;) solve();
    return 0;
}

詳細信息

Test #1:

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

input:

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

output:

4
1 3 8 9

result:

ok 2 lines

Test #2:

score: 0
Accepted
time: 1119ms
memory: 3864kb

input:

10000
906
675 189
555 889
491 97
791 419
175 694
713 842
788 513
159 354
670 815
652 546
253 87
89 278
563 429
522 900
202 657
331 865
35 605
735 532
612 471
657 386
7 886
856 164
224 777
73 534
481 631
711 698
240 465
115 181
191 825
311 155
709 501
207 849
294 546
591 682
96 405
210 696
861 13
781...

output:

63
1 3 4 34 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906
6
1 2 3 4 5 11
28
1 2 3 4 5 6 15 16 17 18 19 20 21 2...

result:

ok 20000 lines

Test #3:

score: 0
Accepted
time: 2860ms
memory: 76588kb

input:

10
257056
71485 24974
175037 254578
15503 255561
2268 184070
101954 23776
151400 163190
209539 157934
61908 8578
251032 109510
106012 63219
6393 135129
229530 202665
135202 195080
36226 54716
113653 27375
130515 126621
51348 62149
190321 116509
235895 205631
193944 184367
234172 88847
217084 158554
...

output:

24809
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 10...

result:

ok 20 lines

Test #4:

score: 0
Accepted
time: 4440ms
memory: 283332kb

input:

3
1000000
929036 746780
508756 963246
215473 613289
951642 391332
605398 514190
932199 548138
439718 525533
976267 837482
522952 131368
536100 143927
866830 627096
995333 784817
209340 817981
278894 972055
340159 479037
505969 156301
962674 345998
328184 514559
522443 340810
671564 2940
233204 19714...

output:

1000000
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 ...

result:

ok 6 lines

Test #5:

score: 0
Accepted
time: 3195ms
memory: 148680kb

input:

3
1000000
762755 663578
736521 890486
762558 739995
2696 497271
66774 285301
58082 960305
515605 849755
585841 791747
805356 25220
199034 206010
792516 101430
419916 601668
256275 440770
76325 556632
286424 45286
173087 212370
760515 256873
614983 749308
248450 520646
937026 203197
698482 110785
336...

output:

97
1 999905 999906 999907 999908 999909 999910 999911 999912 999913 999914 999915 999916 999917 999918 999919 999920 999921 999922 999923 999924 999925 999926 999927 999928 999929 999930 999931 999932 999933 999934 999935 999936 999937 999938 999939 999940 999941 999942 999943 999944 999945 999946 9...

result:

ok 6 lines

Test #6:

score: 0
Accepted
time: 2417ms
memory: 65888kb

input:

4
524287
205019 282354
364309 67930
413687 214429
276475 421558
389289 353076
280299 275873
94349 273570
247189 157103
229015 223128
199377 75975
290133 428512
365384 135800
429146 366204
300847 17632
274432 256151
514401 293776
169558 105252
441686 467048
416285 490295
87525 312545
150473 67284
218...

output:

19
1 3 7 15 31 63 127 255 511 1023 2047 4095 8191 16383 32767 65535 131071 262143 524287
2
1 524288
18
1 3 7 15 31 63 127 255 511 1023 2047 4095 8191 16383 32767 65535 131071 917503
2
1 1000000

result:

ok 8 lines