結果
問題 | No.1103 Directed Length Sum |
ユーザー | hanbei_dayo |
提出日時 | 2020-07-16 13:35:49 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 1,263 ms / 3,000 ms |
コード長 | 1,613 bytes |
コンパイル時間 | 1,093 ms |
コンパイル使用メモリ | 101,816 KB |
実行使用メモリ | 175,156 KB |
最終ジャッジ日時 | 2024-11-24 15:05:10 |
合計ジャッジ時間 | 13,825 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 9 ms
30,156 KB |
testcase_01 | AC | 8 ms
30,148 KB |
testcase_02 | AC | 769 ms
175,156 KB |
testcase_03 | AC | 526 ms
85,352 KB |
testcase_04 | AC | 691 ms
64,708 KB |
testcase_05 | AC | 1,263 ms
81,644 KB |
testcase_06 | AC | 421 ms
49,744 KB |
testcase_07 | AC | 77 ms
39,368 KB |
testcase_08 | AC | 118 ms
37,580 KB |
testcase_09 | AC | 50 ms
34,248 KB |
testcase_10 | AC | 166 ms
41,544 KB |
testcase_11 | AC | 758 ms
65,356 KB |
testcase_12 | AC | 416 ms
51,908 KB |
testcase_13 | AC | 181 ms
42,704 KB |
testcase_14 | AC | 38 ms
31,944 KB |
testcase_15 | AC | 300 ms
46,540 KB |
testcase_16 | AC | 839 ms
68,840 KB |
testcase_17 | AC | 890 ms
71,508 KB |
testcase_18 | AC | 172 ms
43,216 KB |
testcase_19 | AC | 779 ms
69,316 KB |
testcase_20 | AC | 59 ms
32,972 KB |
testcase_21 | AC | 106 ms
37,064 KB |
testcase_22 | AC | 600 ms
59,208 KB |
testcase_23 | AC | 310 ms
48,836 KB |
ソースコード
#include<iostream> #include<algorithm> #include<vector> #include<string> #include<utility> #include<map> #include<set> #include<queue> #include<stack> #include<functional> #include<math.h> #include<random> #include <bitset> using namespace std; #define N (1000000000+7) //#define N 998244353 #define INF 1e16 typedef long long ll; typedef pair<int,int> P; typedef pair<int,P> Q; const int inf = (int)1e9; ll gcd(ll a, ll b) { if (b > a) { ll tmp = b; b = a; a = tmp; } if (a%b == 0)return b; else return gcd(b, a%b); } ll path[1000010]; ll vertex[1000010]; vector<int>g[1000010]; ll num[1000010]; void rec(ll now,ll root){ if(path[now]!=-1 && vertex[now]!=-1){ return; } if(root!=-1 && g[now].size()==1){ path[now]=0; vertex[now]=1; return; } ll v = 0,p = 0; for(int i=0;i<g[now].size();i++){ int next = g[now][i]; if(root == next)continue; rec(next,now); v = (v+vertex[next])%N; p = (p+path[next]+vertex[next])%N; } vertex[now]=(v+1)%N; path[now]=p%N; return; } int main(void){ int n; cin>>n; for(int i=1;i<=n;i++){ path[i]=-1; vertex[i]=-1; } for(int i=0;i<n-1;i++){ int a,b; cin>>a>>b; g[a].push_back(b); g[b].push_back(a); num[b]++; } ll start = 0; for(int i=1;i<=n;i++){ if(num[i]==0)start=i; } rec(start,-1); //for(int i=1;i<=n;i++)cout<<path[i]<<" "<<vertex[i]<<endl; ll ans = 0; for(int i=1;i<=n;i++)ans = (ans+path[i])%N; cout<<ans<<endl; return 0; }