結果

問題 No.828 全方位神童数
ユーザー rpy3cpprpy3cpp
提出日時 2019-05-08 23:37:50
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 194 ms / 2,000 ms
コード長 1,717 bytes
コンパイル時間 1,890 ms
コンパイル使用メモリ 176,020 KB
実行使用メモリ 33,664 KB
最終ジャッジ日時 2024-07-02 00:33:46
合計ジャッジ時間 9,430 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 8 ms
5,376 KB
testcase_04 AC 4 ms
5,376 KB
testcase_05 AC 8 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 6 ms
5,376 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 7 ms
5,376 KB
testcase_13 AC 53 ms
11,904 KB
testcase_14 AC 139 ms
21,120 KB
testcase_15 AC 41 ms
9,472 KB
testcase_16 AC 58 ms
12,288 KB
testcase_17 AC 44 ms
10,496 KB
testcase_18 AC 83 ms
16,000 KB
testcase_19 AC 167 ms
25,088 KB
testcase_20 AC 102 ms
18,304 KB
testcase_21 AC 139 ms
22,272 KB
testcase_22 AC 27 ms
7,936 KB
testcase_23 AC 9 ms
5,376 KB
testcase_24 AC 75 ms
14,848 KB
testcase_25 AC 31 ms
7,936 KB
testcase_26 AC 165 ms
23,808 KB
testcase_27 AC 133 ms
20,864 KB
testcase_28 AC 171 ms
23,936 KB
testcase_29 AC 162 ms
22,784 KB
testcase_30 AC 78 ms
14,592 KB
testcase_31 AC 78 ms
14,464 KB
testcase_32 AC 169 ms
23,680 KB
testcase_33 AC 192 ms
25,600 KB
testcase_34 AC 145 ms
21,120 KB
testcase_35 AC 90 ms
15,488 KB
testcase_36 AC 116 ms
18,176 KB
testcase_37 AC 72 ms
13,312 KB
testcase_38 AC 97 ms
16,768 KB
testcase_39 AC 170 ms
24,064 KB
testcase_40 AC 70 ms
13,056 KB
testcase_41 AC 58 ms
11,520 KB
testcase_42 AC 194 ms
25,856 KB
testcase_43 AC 95 ms
33,664 KB
testcase_44 AC 38 ms
15,104 KB
testcase_45 AC 57 ms
20,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
constexpr long long mod = 1e9+7;

struct UnionFind{
    vector<int> data, max;
    UnionFind(int size) : data(size, -1), max(size, 0){
        for (int i = 0; i < size; ++i) max[i] = i;
    }
    void unite(int x, int y){
        x = root(x);
        y = root(y);
        if (x != y){
            if (data[y] < data[x]) swap(x, y);
            data[x] += data[y];
            data[y] = x;
        }
        if (max[x] > max[y]){
            max[y] = max[x];
        }else{
            max[x] = max[y];
        }
    }
    int root(int x) {return data[x] < 0 ? x : data[x] = root(data[x]);}
    int size(int x) {return -data[root(x)];}
    int head(int x) {return max[root(x)];}
};

void dfs(int v, vector<int> & depth, const vector<vector<int>> &Fs){
    for (auto u: Fs[v]){
        depth[u] = depth[v] + 1;
        dfs(u, depth, Fs);
    }
}

int main(){
    cin.tie(0);
    ios::sync_with_stdio(false);
    int N;
    cin >> N;
    vector<long long> rs(N, 0LL);
    for (auto & r: rs) cin >> r;
    vector<vector<int>> Es(N, vector<int>());
    for (int i = 1; i < N; ++i){
        int a, b;
        cin >> a >> b;
        Es[a-1].push_back(b-1);
        Es[b-1].push_back(a-1);
    }
    vector<vector<int>> Fs(N, vector<int>());
    UnionFind uf(N);
    for (int v = 0; v < N; ++v){
        for (auto u: Es[v]){
            if (u < v){
                Fs[v].push_back(uf.head(u));
                uf.unite(u, v);
            }
        }
    }
    vector<int> depth(N, 0);
    dfs(N-1, depth, Fs);
    long long ans = 1LL;
    for (int i = 0; i < N; ++i){
        ans *= (1 + depth[i] + rs[i]) % mod;
        ans %= mod;
    }
    cout << ans << endl;
    return 0;
}
0