結果

問題 No.828 全方位神童数
ユーザー PachicobuePachicobue
提出日時 2019-04-11 19:58:42
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,182 bytes
コンパイル時間 1,174 ms
コンパイル使用メモリ 87,284 KB
実行使用メモリ 20,276 KB
最終ジャッジ日時 2024-07-19 07:22:04
合計ジャッジ時間 7,468 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,624 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 80 ms
5,376 KB
testcase_04 AC 7 ms
5,376 KB
testcase_05 AC 64 ms
5,376 KB
testcase_06 AC 6 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 5 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 41 ms
5,376 KB
testcase_11 AC 4 ms
5,376 KB
testcase_12 AC 30 ms
5,376 KB
testcase_13 AC 77 ms
10,240 KB
testcase_14 AC 177 ms
17,024 KB
testcase_15 AC 52 ms
8,064 KB
testcase_16 AC 78 ms
10,368 KB
testcase_17 AC 62 ms
8,704 KB
testcase_18 AC 122 ms
13,824 KB
testcase_19 AC 235 ms
20,276 KB
testcase_20 AC 147 ms
14,404 KB
testcase_21 AC 192 ms
17,408 KB
testcase_22 AC 37 ms
6,912 KB
testcase_23 AC 73 ms
5,376 KB
testcase_24 TLE -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("O3")
#pragma GCC target("tune=native")
#pragma GCC target("avx")
#include <iostream>
#include <vector>
#include <algorithm>
using ull = unsigned long long;
constexpr ull MOD = 1000000007;
int main()
{
    std::cin.tie(nullptr);
    std::ios::sync_with_stdio(false);
    std::size_t N;
    std::cin >> N;
    std::vector<ull> R(N);
    for (std::size_t i = 0; i < N; i++) { std::cin >> R[i]; }
    std::vector<std::vector<std::size_t>> g(N);
    for (std::size_t i = 0; i < N - 1; i++) {
        std::size_t u, v;
        std::cin >> u >> v, u--, v--;
        g[u].push_back(v), g[v].push_back(u);
    }
    std::vector<std::size_t> sindo(N, 0);
    auto dfs = [&](auto&& self, const std::size_t s, const std::size_t p, const std::size_t R) -> void {
        sindo[s]++;
        for (const std::size_t to : g[s]) {
            if (to == p) { continue; }
            if (to >= R) { continue; }
            self(self, to, s, R);
        }
    };

    for (std::size_t i = 0; i < N; i++) { dfs(dfs, i, N, i); }
    ull ans = 1;
    for (std::size_t i = 0; i < N; i++) { (ans *= (sindo[i] + R[i]) % MOD) %= MOD; }
    std::cout << ans << std::endl;
    return 0;
}
0