結果

問題 No.828 全方位神童数
ユーザー chocoruskchocorusk
提出日時 2019-05-03 22:10:30
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 286 ms / 2,000 ms
コード長 1,671 bytes
コンパイル時間 896 ms
コンパイル使用メモリ 103,804 KB
実行使用メモリ 41,856 KB
最終ジャッジ日時 2024-06-10 06:39:45
合計ジャッジ時間 8,569 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
22,400 KB
testcase_01 AC 11 ms
22,144 KB
testcase_02 AC 10 ms
22,400 KB
testcase_03 AC 23 ms
23,168 KB
testcase_04 AC 14 ms
22,400 KB
testcase_05 AC 22 ms
23,296 KB
testcase_06 AC 13 ms
22,400 KB
testcase_07 AC 12 ms
22,528 KB
testcase_08 AC 13 ms
22,400 KB
testcase_09 AC 11 ms
22,272 KB
testcase_10 AC 19 ms
22,912 KB
testcase_11 AC 11 ms
22,272 KB
testcase_12 AC 19 ms
22,656 KB
testcase_13 AC 116 ms
29,312 KB
testcase_14 AC 217 ms
36,992 KB
testcase_15 AC 77 ms
27,520 KB
testcase_16 AC 108 ms
29,568 KB
testcase_17 AC 85 ms
28,160 KB
testcase_18 AC 155 ms
32,768 KB
testcase_19 AC 270 ms
40,320 KB
testcase_20 AC 178 ms
34,560 KB
testcase_21 AC 231 ms
38,016 KB
testcase_22 AC 61 ms
25,984 KB
testcase_23 AC 28 ms
23,552 KB
testcase_24 AC 142 ms
31,744 KB
testcase_25 AC 64 ms
26,112 KB
testcase_26 AC 267 ms
39,296 KB
testcase_27 AC 225 ms
36,864 KB
testcase_28 AC 261 ms
39,552 KB
testcase_29 AC 239 ms
38,400 KB
testcase_30 AC 136 ms
31,744 KB
testcase_31 AC 132 ms
31,360 KB
testcase_32 AC 264 ms
39,296 KB
testcase_33 AC 286 ms
40,832 KB
testcase_34 AC 219 ms
37,120 KB
testcase_35 AC 145 ms
32,384 KB
testcase_36 AC 188 ms
34,560 KB
testcase_37 AC 120 ms
30,464 KB
testcase_38 AC 163 ms
33,536 KB
testcase_39 AC 259 ms
39,552 KB
testcase_40 AC 119 ms
30,464 KB
testcase_41 AC 99 ms
29,184 KB
testcase_42 AC 281 ms
40,960 KB
testcase_43 AC 185 ms
41,856 KB
testcase_44 AC 83 ms
29,696 KB
testcase_45 AC 114 ms
33,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#define popcount __builtin_popcount
using namespace std;
typedef long long int ll;
typedef pair<int, int> P;
const ll MOD=1e9+7;
int sz[600010];
int par[600010];
int rk[600010];
vector<int> gu[600010];
vector<int> g[200010];
ll c[600010];
int n;
int n0;
int num[600010];
void init(int n){
	for(int i=0; i<n; i++){
		par[i]=i;
        rk[i]=0;
        num[i]=i;
	}
}
int find(int x){
	if(par[x]==x){
		return x;
	}else{
		return par[x]=find(par[x]);
	}
}
void unite(int x, int y){
	x=find(x);
	y=find(y);
	if(x==y) return;
    gu[n0].push_back(num[x]);
    gu[n0].push_back(num[y]);
	if(rk[x]<rk[y]){
		par[x]=y;
        num[y]=n0;
	}else{
		par[y]=x;
        num[x]=n0;
		if(rk[x]==rk[y]) rk[x]++;
	}
    n0++;
}
void add(int x){
    c[num[find(x)]]++;
}
ll r[200010];
void dfs(int x){
    for(auto y:gu[x]){
        c[y]+=c[x];
        dfs(y);
    }
}
int main()
{
    int n; cin>>n; n0=n;
    for(int i=0; i<n; i++) cin>>r[i];
    for(int i=0; i<n-1; i++){
        int u, v; cin>>u>>v; u--; v--;
        g[u].push_back(v);
        g[v].push_back(u);
    }
    init(n);
    for(int i=0; i<n; i++){
        for(auto y:g[i]){
            if(y<i) unite(y, i);
        }
        add(i);
    }
    dfs(n0-1);
    ll ans=1;
    for(int i=0; i<n; i++){
        ans*=(r[i]+c[i]);
        ans%=MOD;
    }
    cout<<ans<<endl;
    return 0;
}
0