結果
問題 | No.828 全方位神童数 |
ユーザー | kopricky |
提出日時 | 2019-04-11 20:33:12 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 118 ms / 2,000 ms |
コード長 | 2,727 bytes |
コンパイル時間 | 1,764 ms |
コンパイル使用メモリ | 174,652 KB |
実行使用メモリ | 28,928 KB |
最終ジャッジ日時 | 2024-06-10 05:31:27 |
合計ジャッジ時間 | 5,897 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 5 ms
12,788 KB |
testcase_01 | AC | 6 ms
12,772 KB |
testcase_02 | AC | 6 ms
12,800 KB |
testcase_03 | AC | 11 ms
13,568 KB |
testcase_04 | AC | 7 ms
13,056 KB |
testcase_05 | AC | 10 ms
13,312 KB |
testcase_06 | AC | 7 ms
12,928 KB |
testcase_07 | AC | 6 ms
12,904 KB |
testcase_08 | AC | 7 ms
12,928 KB |
testcase_09 | AC | 6 ms
12,800 KB |
testcase_10 | AC | 9 ms
13,184 KB |
testcase_11 | AC | 7 ms
12,904 KB |
testcase_12 | AC | 9 ms
13,164 KB |
testcase_13 | AC | 40 ms
16,896 KB |
testcase_14 | AC | 90 ms
21,376 KB |
testcase_15 | AC | 33 ms
15,872 KB |
testcase_16 | AC | 43 ms
17,024 KB |
testcase_17 | AC | 36 ms
16,256 KB |
testcase_18 | AC | 61 ms
18,816 KB |
testcase_19 | AC | 115 ms
23,168 KB |
testcase_20 | AC | 77 ms
19,840 KB |
testcase_21 | AC | 100 ms
21,888 KB |
testcase_22 | AC | 26 ms
14,864 KB |
testcase_23 | AC | 11 ms
13,696 KB |
testcase_24 | AC | 56 ms
18,176 KB |
testcase_25 | AC | 27 ms
14,888 KB |
testcase_26 | AC | 103 ms
22,348 KB |
testcase_27 | AC | 86 ms
20,864 KB |
testcase_28 | AC | 107 ms
22,272 KB |
testcase_29 | AC | 97 ms
21,612 KB |
testcase_30 | AC | 58 ms
17,920 KB |
testcase_31 | AC | 54 ms
17,640 KB |
testcase_32 | AC | 105 ms
22,144 KB |
testcase_33 | AC | 114 ms
23,016 KB |
testcase_34 | AC | 94 ms
20,992 KB |
testcase_35 | AC | 60 ms
18,304 KB |
testcase_36 | AC | 73 ms
19,584 KB |
testcase_37 | AC | 48 ms
17,280 KB |
testcase_38 | AC | 67 ms
18,944 KB |
testcase_39 | AC | 105 ms
22,400 KB |
testcase_40 | AC | 49 ms
17,280 KB |
testcase_41 | AC | 42 ms
16,488 KB |
testcase_42 | AC | 118 ms
23,164 KB |
testcase_43 | AC | 79 ms
28,928 KB |
testcase_44 | AC | 35 ms
18,944 KB |
testcase_45 | AC | 48 ms
22,120 KB |
ソースコード
#include <bits/stdc++.h> #define ll long long #define INF 1000000005 #define MOD 1000000007 #define EPS 1e-10 #define rep(i,n) for(int i=0;i<(int)(n);++i) #define rrep(i,n) for(int i=(int)(n)-1;i>=0;--i) #define srep(i,s,t) for(int i=(int)(s);i<(int)(t);++i) #define each(a,b) for(auto& (a): (b)) #define all(v) (v).begin(),(v).end() #define len(v) (int)(v).size() #define zip(v) sort(all(v)),v.erase(unique(all(v)),v.end()) #define cmx(x,y) x=max(x,y) #define cmn(x,y) x=min(x,y) #define fi first #define se second #define pb push_back #define show(x) cout<<#x<<" = "<<(x)<<endl #define sar(a,n) cout<<#a<<":";rep(pachico,n)cout<<" "<<a[pachico];cout<<endl using namespace std; template<typename S,typename T>auto&operator<<(ostream&o,pair<S,T>p){return o<<"{"<<p.fi<<","<<p.se<<"}";} template<typename T>auto&operator<<(ostream&o,set<T>s){for(auto&e:s)o<<e<<" ";return o;} template<typename S,typename T,typename U> auto&operator<<(ostream&o,priority_queue<S,T,U>q){while(!q.empty())o<<q.top()<<" ",q.pop();return o;} template<typename K,typename T>auto&operator<<(ostream&o,map<K,T>m){for(auto&e:m)o<<e<<" ";return o;} template<typename T>auto&operator<<(ostream&o,vector<T>v){for(auto&e:v)o<<e<<" ";return o;} void ashow(){cout<<endl;}template<typename T,typename...A>void ashow(T t,A...a){cout<<t<<" ";ashow(a...);} typedef pair<int,int> P; typedef pair<ll,ll> pll; typedef vector<int> vi; typedef vector<ll> vl; typedef vector<vi> vvi; typedef vector<vl> vvl; typedef vector<P> vp; typedef vector<double> vd; typedef vector<string> vs; const int MAX_N = 200005; vector<int> G[MAX_N], graph[MAX_N]; int ver[MAX_N], ans[MAX_N]; class UF { private: int sz; vector<int> par,nrank; public: UF(){} UF(int node_size){ sz = node_size; par.resize(sz),nrank.resize(sz,0); rep(i,sz) par[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; if(nrank[x] < nrank[y]) swap(x,y); par[y] = x; if(nrank[x] == nrank[y]) nrank[x]++; } bool same(int x,int y){ return find(x) == find(y); } }; void dfs(int u, int p, int depth) { ans[u] += depth; each(v, graph[u]){ if(v != p){ dfs(v, u, depth + 1); } } } int main() { cin.tie(0); ios::sync_with_stdio(false); int n; cin >> n; rep(i,n){ cin >> ans[i]; } rep(i,n-1){ int u,v; cin >> u >> v; if(u > v) swap(u, v); G[v-1].pb(u-1); ver[i+1] = i+1; } UF uf(n); rep(i,n){ each(v, G[i]) graph[i].pb(ver[uf.find(v)]), uf.unite(i, v); ver[uf.find(i)] = i; } dfs(n-1, -1, 1); int ret = 1; rep(i,n){ ret = (ll)ret * ans[i] % MOD; } cout << ret << "\n"; return 0; }