結果

問題 No.828 全方位神童数
ユーザー beetbeet
提出日時 2019-05-03 22:22:08
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 2,770 bytes
コンパイル時間 2,359 ms
コンパイル使用メモリ 215,236 KB
実行使用メモリ 27,604 KB
最終ジャッジ日時 2024-06-10 06:41:13
合計ジャッジ時間 6,746 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 7 ms
6,940 KB
testcase_04 AC 3 ms
6,944 KB
testcase_05 AC 6 ms
6,940 KB
testcase_06 AC 3 ms
6,944 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 5 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 5 ms
6,940 KB
testcase_13 AC 46 ms
12,672 KB
testcase_14 AC 101 ms
22,620 KB
testcase_15 AC 32 ms
10,112 KB
testcase_16 AC 46 ms
13,056 KB
testcase_17 AC 36 ms
11,008 KB
testcase_18 AC 68 ms
16,896 KB
testcase_19 AC 133 ms
26,908 KB
testcase_20 AC 80 ms
19,576 KB
testcase_21 AC 110 ms
23,832 KB
testcase_22 AC 24 ms
8,320 KB
testcase_23 AC 9 ms
6,944 KB
testcase_24 AC 62 ms
15,724 KB
testcase_25 AC 25 ms
8,448 KB
testcase_26 AC 125 ms
25,440 KB
testcase_27 AC 97 ms
22,436 KB
testcase_28 AC 131 ms
25,608 KB
testcase_29 AC 122 ms
24,392 KB
testcase_30 AC 59 ms
15,616 KB
testcase_31 AC 64 ms
15,104 KB
testcase_32 AC 128 ms
25,444 KB
testcase_33 AC 137 ms
27,464 KB
testcase_34 AC 109 ms
22,596 KB
testcase_35 AC 67 ms
16,384 KB
testcase_36 AC 83 ms
19,464 KB
testcase_37 AC 54 ms
14,080 KB
testcase_38 AC 76 ms
17,836 KB
testcase_39 AC 131 ms
25,676 KB
testcase_40 AC 53 ms
13,952 KB
testcase_41 AC 41 ms
12,032 KB
testcase_42 AC 141 ms
27,604 KB
testcase_43 AC 79 ms
26,832 KB
testcase_44 AC 32 ms
12,416 KB
testcase_45 AC 47 ms
17,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using Int = long long;
template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;}
template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;}


template<typename T,T MOD = 1000000007>
struct Mint{
  T v;
  Mint():v(0){}
  Mint(signed v):v(v){}
  Mint(long long t){v=t%MOD;if(v<0) v+=MOD;}

  Mint pow(long long k){
    Mint res(1),tmp(v);
    while(k){
      if(k&1) res*=tmp;
      tmp*=tmp;
      k>>=1;
    }
    return res;
  }
  
  static Mint add_identity(){return Mint(0);}
  static Mint mul_identity(){return Mint(1);}
  
  Mint inv(){return pow(MOD-2);}
  
  Mint& operator+=(Mint a){v+=a.v;if(v>=MOD)v-=MOD;return *this;}
  Mint& operator-=(Mint a){v+=MOD-a.v;if(v>=MOD)v-=MOD;return *this;}
  Mint& operator*=(Mint a){v=1LL*v*a.v%MOD;return *this;}
  Mint& operator/=(Mint a){return (*this)*=a.inv();}
  
  Mint operator+(Mint a) const{return Mint(v)+=a;};
  Mint operator-(Mint a) const{return Mint(v)-=a;};
  Mint operator*(Mint a) const{return Mint(v)*=a;};
  Mint operator/(Mint a) const{return Mint(v)/=a;};

  Mint operator-() const{return v?Mint(MOD-v):Mint(v);}

  bool operator==(const Mint a)const{return v==a.v;}
  bool operator!=(const Mint a)const{return v!=a.v;}
  bool operator <(const Mint a)const{return v <a.v;}

};

struct FastIO{
  FastIO(){
    cin.tie(0);
    ios::sync_with_stdio(0);
  }
}fastio_beet;


struct UnionFind{
  Int n;
  vector<Int> r,p,q;
  UnionFind(){}
  UnionFind(Int sz):n(sz),r(sz,1),p(sz,0),q(sz,0){
    iota(p.begin(),p.end(),0);q=p;}
  Int find(Int x){
    return (x==p[x]?x:p[x]=find(p[x]));
  }
  bool same(Int x,Int y){
    return find(x)==find(y);
  }
  void unite(Int x,Int y){
    x=find(x);y=find(y);
    if(x==y) return;
    if(r[x]<r[y]) swap(x,y);
    r[x]+=r[y];
    chmax(q[x],q[y]);
    p[y]=x;
  }
  Int size(Int x){
    return r[find(x)];
  }
  Int val(Int x){
    return q[find(x)];
  }
};

//INSERT ABOVE HERE
signed main(){
  Int n;
  cin>>n;
  vector<Int> r(n);
  for(Int i=0;i<n;i++) cin>>r[i];

  vector<vector<Int> > G(n);
  for(Int i=1;i<n;i++){
    Int x,y;
    cin>>x>>y;
    x--;y--;
    if(x<y) swap(x,y);
    G[x].emplace_back(y);
  }
  
  UnionFind uf(n);
  vector<vector<Int> > H(n);
  for(Int v=0;v<n;v++){
    for(Int u:G[v]){
      //cout<<v<<"->"<<uf.val(u)<<endl;
      H[v].emplace_back(uf.val(u));
      uf.unite(v,u);
    }    
  }
  
  vector<Int> dep(n,-1);
  queue<Int> que;
  dep[n-1]=1;
  que.emplace(n-1);
  while(!que.empty()){
    Int v=que.front();que.pop();
    for(Int u:H[v]){
      if(~dep[u]) continue;
      dep[u]=dep[v]+1;
      que.emplace(u);      
    }
  }
  
  using M = Mint<Int>;
  M ans(1);
  for(Int i=0;i<n;i++) ans*=M(r[i]+dep[i]);
  cout<<ans.v<<endl;
  return 0;
}
0