結果

問題 No.828 全方位神童数
ユーザー ahe100ahe100
提出日時 2019-05-11 21:15:33
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 362 ms / 2,000 ms
コード長 1,445 bytes
コンパイル時間 1,761 ms
コンパイル使用メモリ 176,828 KB
実行使用メモリ 30,208 KB
最終ジャッジ日時 2024-07-02 01:26:53
合計ジャッジ時間 10,379 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
14,208 KB
testcase_01 AC 7 ms
14,208 KB
testcase_02 AC 7 ms
14,208 KB
testcase_03 AC 19 ms
14,976 KB
testcase_04 AC 11 ms
14,464 KB
testcase_05 AC 19 ms
14,952 KB
testcase_06 AC 10 ms
14,464 KB
testcase_07 AC 8 ms
14,336 KB
testcase_08 AC 10 ms
14,592 KB
testcase_09 AC 8 ms
14,336 KB
testcase_10 AC 16 ms
14,848 KB
testcase_11 AC 8 ms
14,336 KB
testcase_12 AC 16 ms
14,848 KB
testcase_13 AC 116 ms
20,352 KB
testcase_14 AC 254 ms
26,340 KB
testcase_15 AC 85 ms
18,560 KB
testcase_16 AC 121 ms
20,480 KB
testcase_17 AC 95 ms
19,044 KB
testcase_18 AC 172 ms
23,040 KB
testcase_19 AC 313 ms
29,056 KB
testcase_20 AC 206 ms
24,572 KB
testcase_21 AC 276 ms
27,264 KB
testcase_22 AC 62 ms
17,280 KB
testcase_23 AC 23 ms
15,360 KB
testcase_24 AC 163 ms
22,400 KB
testcase_25 AC 65 ms
17,664 KB
testcase_26 AC 321 ms
28,928 KB
testcase_27 AC 272 ms
26,880 KB
testcase_28 AC 324 ms
28,900 KB
testcase_29 AC 307 ms
28,012 KB
testcase_30 AC 164 ms
22,272 KB
testcase_31 AC 162 ms
22,104 KB
testcase_32 AC 328 ms
28,772 KB
testcase_33 AC 362 ms
30,176 KB
testcase_34 AC 275 ms
27,112 KB
testcase_35 AC 177 ms
22,840 KB
testcase_36 AC 224 ms
24,804 KB
testcase_37 AC 139 ms
21,224 KB
testcase_38 AC 199 ms
23,936 KB
testcase_39 AC 330 ms
28,820 KB
testcase_40 AC 142 ms
21,248 KB
testcase_41 AC 117 ms
20,224 KB
testcase_42 AC 359 ms
30,208 KB
testcase_43 AC 196 ms
26,112 KB
testcase_44 AC 80 ms
18,744 KB
testcase_45 AC 117 ms
21,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for(int i = 0;i<((int)(n));i++)
#define reg(i,a,b) for(int i = ((int)(a));i<=((int)(b));i++)
#define irep(i,n) for(int i = ((int)(n)-1);i>=0;i--)
#define ireg(i,a,b) for(int i = ((int)(b));i>=((int)(a));i--)
typedef long long ll;

/*
*/

ll n,r[200010],ans=1,mod=1e9+7;
vector<ll> v[200010],v2[200010],d(200010);

struct UnionFind{
	int n;
	vector<int> p;
	UnionFind(){}
	UnionFind(int sz):n(sz),p(sz,0){iota(p.begin(),p.end(),0);}
	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(x<y) swap(x,y);
		p[y]=x;
	}
};

int dijkstra1(int s,vector<ll>& d,vector<ll> v[],ll INF=1e18){
	int farthest=s;
	queue<int> Q;
	rep(i,d.size())d[i]=INF;
	Q.push(s);
	d[s]=0;
	while(!Q.empty()){
		int p = Q.front();Q.pop();
		if(d[farthest]<d[p])farthest=p;
		for(int q:v[p]){
			if(d[q]>d[p]+1){
				d[q]=d[p]+1;
				Q.push(q);
			}
		}
	}
	return farthest;
}

void init(){
	cin>>n;
	rep(i,n)cin>>r[i];
	rep(i,n-1){
		ll a,b;
		cin>>a>>b;
		v[a-1].push_back(b-1);
		v[b-1].push_back(a-1);
	}
}

int main(void){
	init();
	UnionFind f(n);
	rep(i,n){
		for(ll p:v[i]){
			if(p<i){
				v2[f.find(p)].push_back(i);
				v2[i].push_back(f.find(p));
				f.unite(p,i);
			}
		}
	}
	dijkstra1(n-1,d,v2);
	rep(i,n)ans=(ans*(d[i]+1+r[i]))%mod;
	cout<<ans<<endl;
	return 0;
}
0