結果
問題 | 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,522 ms / 3,000 ms |
コード長 | 1,613 bytes |
コンパイル時間 | 1,000 ms |
コンパイル使用メモリ | 100,772 KB |
実行使用メモリ | 175,232 KB |
最終ジャッジ日時 | 2024-05-03 14:25:00 |
合計ジャッジ時間 | 16,557 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 21 ms
26,880 KB |
testcase_01 | AC | 22 ms
27,008 KB |
testcase_02 | AC | 864 ms
175,232 KB |
testcase_03 | AC | 600 ms
85,232 KB |
testcase_04 | AC | 842 ms
58,368 KB |
testcase_05 | AC | 1,522 ms
81,152 KB |
testcase_06 | AC | 520 ms
47,232 KB |
testcase_07 | AC | 108 ms
32,000 KB |
testcase_08 | AC | 171 ms
34,304 KB |
testcase_09 | AC | 71 ms
29,824 KB |
testcase_10 | AC | 236 ms
37,120 KB |
testcase_11 | AC | 915 ms
61,184 KB |
testcase_12 | AC | 522 ms
47,488 KB |
testcase_13 | AC | 250 ms
37,632 KB |
testcase_14 | AC | 59 ms
29,184 KB |
testcase_15 | AC | 393 ms
42,880 KB |
testcase_16 | AC | 1,030 ms
65,408 KB |
testcase_17 | AC | 1,091 ms
67,072 KB |
testcase_18 | AC | 239 ms
36,992 KB |
testcase_19 | AC | 934 ms
62,080 KB |
testcase_20 | AC | 86 ms
30,592 KB |
testcase_21 | AC | 154 ms
33,664 KB |
testcase_22 | AC | 751 ms
55,424 KB |
testcase_23 | AC | 426 ms
44,160 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; }