結果
問題 | No.828 全方位神童数 |
ユーザー | mcfx0 |
提出日時 | 2019-06-29 02:43:23 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 137 ms / 2,000 ms |
コード長 | 3,774 bytes |
コンパイル時間 | 1,475 ms |
コンパイル使用メモリ | 164,560 KB |
実行使用メモリ | 27,708 KB |
最終ジャッジ日時 | 2024-07-02 05:21:55 |
合計ジャッジ時間 | 5,955 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 6 ms
13,336 KB |
testcase_01 | AC | 6 ms
12,776 KB |
testcase_02 | AC | 6 ms
12,904 KB |
testcase_03 | AC | 9 ms
13,708 KB |
testcase_04 | AC | 6 ms
13,200 KB |
testcase_05 | AC | 9 ms
14,240 KB |
testcase_06 | AC | 6 ms
13,172 KB |
testcase_07 | AC | 7 ms
13,316 KB |
testcase_08 | AC | 6 ms
13,160 KB |
testcase_09 | AC | 6 ms
12,772 KB |
testcase_10 | AC | 8 ms
13,036 KB |
testcase_11 | AC | 6 ms
13,092 KB |
testcase_12 | AC | 8 ms
13,292 KB |
testcase_13 | AC | 38 ms
17,352 KB |
testcase_14 | AC | 95 ms
21,940 KB |
testcase_15 | AC | 30 ms
15,980 KB |
testcase_16 | AC | 44 ms
17,384 KB |
testcase_17 | AC | 33 ms
16,484 KB |
testcase_18 | AC | 65 ms
19,432 KB |
testcase_19 | AC | 112 ms
23,912 KB |
testcase_20 | AC | 81 ms
20,872 KB |
testcase_21 | AC | 97 ms
22,380 KB |
testcase_22 | AC | 21 ms
15,208 KB |
testcase_23 | AC | 10 ms
14,036 KB |
testcase_24 | AC | 58 ms
19,048 KB |
testcase_25 | AC | 24 ms
15,728 KB |
testcase_26 | AC | 125 ms
23,260 KB |
testcase_27 | AC | 93 ms
21,736 KB |
testcase_28 | AC | 124 ms
23,192 KB |
testcase_29 | AC | 110 ms
22,760 KB |
testcase_30 | AC | 53 ms
18,536 KB |
testcase_31 | AC | 55 ms
18,848 KB |
testcase_32 | AC | 114 ms
22,888 KB |
testcase_33 | AC | 137 ms
23,928 KB |
testcase_34 | AC | 92 ms
21,864 KB |
testcase_35 | AC | 64 ms
19,044 KB |
testcase_36 | AC | 92 ms
20,560 KB |
testcase_37 | AC | 47 ms
17,768 KB |
testcase_38 | AC | 76 ms
19,688 KB |
testcase_39 | AC | 120 ms
23,272 KB |
testcase_40 | AC | 47 ms
18,132 KB |
testcase_41 | AC | 40 ms
16,996 KB |
testcase_42 | AC | 124 ms
24,136 KB |
testcase_43 | AC | 53 ms
27,708 KB |
testcase_44 | AC | 24 ms
18,536 KB |
testcase_45 | AC | 32 ms
21,480 KB |
ソースコード
#include<bits/stdc++.h> typedef unsigned int uint; typedef long long ll; typedef unsigned long long ull; typedef double lf; typedef long double llf; typedef std::pair<int,int> pii; #define xx first #define yy second template<typename T> inline T max(T a,T b){return a>b?a:b;} template<typename T> inline T min(T a,T b){return a<b?a:b;} template<typename T> inline T abs(T a){return a>0?a:-a;} template<typename T> inline bool repr(T &a,T b){return a<b?a=b,1:0;} template<typename T> inline bool repl(T &a,T b){return a>b?a=b,1:0;} template<typename T> inline T gcd(T a,T b){T t;if(a<b){while(a){t=a;a=b%a;b=t;}return b;}else{while(b){t=b;b=a%b;a=t;}return a;}} template<typename T> inline T sqr(T x){return x*x;} #define mp(a,b) std::make_pair(a,b) #define pb push_back #define I __attribute__((always_inline))inline #define mset(a,b) memset(a,b,sizeof(a)) #define mcpy(a,b) memcpy(a,b,sizeof(a)) #define fo0(i,n) for(int i=0,i##end=n;i<i##end;i++) #define fo1(i,n) for(int i=1,i##end=n;i<=i##end;i++) #define fo(i,a,b) for(int i=a,i##end=b;i<=i##end;i++) #define fd0(i,n) for(int i=(n)-1;~i;i--) #define fd1(i,n) for(int i=n;i;i--) #define fd(i,a,b) for(int i=a,i##end=b;i>=i##end;i--) #define foe(i,x)for(__typeof((x).end())i=(x).begin();i!=(x).end();++i) #define fre(i,x)for(__typeof((x).rend())i=(x).rbegin();i!=(x).rend();++i) struct Cg{I char operator()(){return getchar();}}; struct Cp{I void operator()(char x){putchar(x);}}; #define OP operator #define RT return *this; #define UC unsigned char #define RX x=0;UC t=P();while((t<'0'||t>'9')&&t!='-')t=P();bool f=0;\ if(t=='-')t=P(),f=1;x=t-'0';for(t=P();t>='0'&&t<='9';t=P())x=x*10+t-'0' #define RL if(t=='.'){lf u=0.1;for(t=P();t>='0'&&t<='9';t=P(),u*=0.1)x+=u*(t-'0');}if(f)x=-x #define RU x=0;UC t=P();while(t<'0'||t>'9')t=P();x=t-'0';for(t=P();t>='0'&&t<='9';t=P())x=x*10+t-'0' #define TR *this,x;return x; I bool IS(char x){return x==10||x==13||x==' ';}template<typename T>struct Fr{T P;I Fr&OP,(int&x) {RX;if(f)x=-x;RT}I OP int(){int x;TR}I Fr&OP,(ll &x){RX;if(f)x=-x;RT}I OP ll(){ll x;TR}I Fr&OP,(char&x) {for(x=P();IS(x);x=P());RT}I OP char(){char x;TR}I Fr&OP,(char*x){char t=P();for(;IS(t);t=P());if(~t){for(;!IS (t)&&~t;t=P())*x++=t;}*x++=0;RT}I Fr&OP,(lf&x){RX;RL;RT}I OP lf(){lf x;TR}I Fr&OP,(llf&x){RX;RL;RT}I OP llf() {llf x;TR}I Fr&OP,(uint&x){RU;RT}I OP uint(){uint x;TR}I Fr&OP,(ull&x){RU;RT}I OP ull(){ull x;TR}};Fr<Cg>in; #define WI(S) if(x){if(x<0)P('-'),x=-x;UC s[S],c=0;while(x)s[c++]=x%10+'0',x/=10;while(c--)P(s[c]);}else P('0') #define WL if(y){lf t=0.5;for(int i=y;i--;)t*=0.1;if(x>=0)x+=t;else x-=t,P('-');*this,(ll)(abs(x));P('.');if(x<0)\ x=-x;while(y--){x*=10;x-=floor(x*0.1)*10;P(((int)x)%10+'0');}}else if(x>=0)*this,(ll)(x+0.5);else *this,(ll)(x-0.5); #define WU(S) if(x){UC s[S],c=0;while(x)s[c++]=x%10+'0',x/=10;while(c--)P(s[c]);}else P('0') template<typename T>struct Fw{T P;I Fw&OP,(int x){WI(10);RT}I Fw&OP()(int x){WI(10);RT}I Fw&OP,(uint x){WU(10);RT} I Fw&OP()(uint x){WU(10);RT}I Fw&OP,(ll x){WI(19);RT}I Fw&OP()(ll x){WI(19);RT}I Fw&OP,(ull x){WU(20);RT}I Fw&OP() (ull x){WU(20);RT}I Fw&OP,(char x){P(x);RT}I Fw&OP()(char x){P(x);RT}I Fw&OP,(const char*x){while(*x)P(*x++);RT} I Fw&OP()(const char*x){while(*x)P(*x++);RT}I Fw&OP()(lf x,int y){WL;RT}I Fw&OP()(llf x,int y){WL;RT}};Fw<Cp>out; const int N=200007,P=1000000007; std::vector<int>p[N],p2[N]; int n,ans,s[N],fa[N]; inline int find(int x) { while(x^fa[x])x=fa[x]=fa[fa[x]];return x; } inline void dfs(int x,int d) { ans=(ll)ans*(s[x]+d)%P; foe(i,p2[x])dfs(*i,d+1); } int main() { in,n; fo1(i,n)in,s[i]; fo1(i,n-1) { int x,y; in,x,y; p[x].pb(y); p[y].pb(x); } fo1(i,n)fa[i]=i; fo1(i,n)foe(j,p[i])if(*j<i) { p2[i].pb(find(*j)); fa[find(*j)]=i; } ans=1; dfs(n,1); out,ans,'\n'; }