結果

問題 No.828 全方位神童数
ユーザー pekempeypekempey
提出日時 2019-05-03 23:55:34
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 241 ms / 2,000 ms
コード長 1,358 bytes
コンパイル時間 778 ms
コンパイル使用メモリ 74,380 KB
実行使用メモリ 18,048 KB
最終ジャッジ日時 2024-06-10 07:32:32
合計ジャッジ時間 7,797 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
8,064 KB
testcase_01 AC 5 ms
8,192 KB
testcase_02 AC 4 ms
8,320 KB
testcase_03 AC 16 ms
8,704 KB
testcase_04 AC 7 ms
8,192 KB
testcase_05 AC 14 ms
8,576 KB
testcase_06 AC 6 ms
8,320 KB
testcase_07 AC 6 ms
8,320 KB
testcase_08 AC 6 ms
8,448 KB
testcase_09 AC 6 ms
8,192 KB
testcase_10 AC 11 ms
8,576 KB
testcase_11 AC 5 ms
8,192 KB
testcase_12 AC 12 ms
8,576 KB
testcase_13 AC 83 ms
11,904 KB
testcase_14 AC 173 ms
15,872 KB
testcase_15 AC 62 ms
10,880 KB
testcase_16 AC 90 ms
12,032 KB
testcase_17 AC 71 ms
11,392 KB
testcase_18 AC 122 ms
13,696 KB
testcase_19 AC 227 ms
17,408 KB
testcase_20 AC 148 ms
14,592 KB
testcase_21 AC 188 ms
16,384 KB
testcase_22 AC 47 ms
10,112 KB
testcase_23 AC 18 ms
8,832 KB
testcase_24 AC 118 ms
13,184 KB
testcase_25 AC 50 ms
10,240 KB
testcase_26 AC 222 ms
17,152 KB
testcase_27 AC 186 ms
16,000 KB
testcase_28 AC 220 ms
17,152 KB
testcase_29 AC 206 ms
16,640 KB
testcase_30 AC 119 ms
13,184 KB
testcase_31 AC 115 ms
13,056 KB
testcase_32 AC 211 ms
17,152 KB
testcase_33 AC 241 ms
17,920 KB
testcase_34 AC 183 ms
16,128 KB
testcase_35 AC 123 ms
13,440 KB
testcase_36 AC 155 ms
14,720 KB
testcase_37 AC 99 ms
12,544 KB
testcase_38 AC 135 ms
14,080 KB
testcase_39 AC 215 ms
17,280 KB
testcase_40 AC 102 ms
12,544 KB
testcase_41 AC 82 ms
11,776 KB
testcase_42 AC 241 ms
18,048 KB
testcase_43 AC 169 ms
16,256 KB
testcase_44 AC 64 ms
11,392 KB
testcase_45 AC 95 ms
12,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>
#include <string>
#define REP(i, n) for (int i = 0; i < (n); i++)

using namespace std;

const int MOD = 1e9 + 7;

struct mint {
    int n;
    mint(int n_ = 0) : n(n_) {}
};

mint operator+(mint a, mint b) { a.n += b.n; if (a.n >= MOD) a.n -= MOD; return a; }
mint operator-(mint a, mint b) { a.n -= b.n; if (a.n < 0) a.n += MOD; return a; }
mint operator*(mint a, mint b) { return (long long)a.n * b.n % MOD; }
mint &operator+=(mint &a, mint b) { return a = a + b; }
mint &operator-=(mint &a, mint b) { return a = a - b; }
mint &operator*=(mint &a, mint b) { return a = a * b; }

int N, X[200000];
vector<int> G[200000];

int P[400000];
int L[400000];
int R[400000];
int K;
mint ans = 1;

int find(int x) {
  if (P[x] == x) return x;
  return P[x] = find(P[x]);
}

void unite(int x, int y) {
  x = find(x);
  y = find(y);
  L[K] = x;
  R[K] = y;
  P[x] = K;
  P[y] = K;
  K++;
}

void dfs(int u, int d) {
  if (u < N) {
    ans *= X[u] + d;
    return;
  }
  dfs(L[u], d);
  dfs(R[u], d+1);
}

int main() {
  cin >> N;
  REP(i, N) cin >> X[i];
  REP(i, N*2) {
    P[i] = i;
  }
  K = N;
  REP(i, N-1) {
    int u, v;
    cin >> u >> v;
    u--; v--;
    G[u].push_back(v);
    G[v].push_back(u);
  }
  REP(i, N) for (int j : G[i]) if (i > j) unite(i, j);
  dfs(K-1, 1);
  cout << ans.n << '\n';
}
0