結果
問題 | No.1103 Directed Length Sum |
ユーザー | hs0319boy |
提出日時 | 2020-07-07 16:42:06 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2,429 ms / 3,000 ms |
コード長 | 1,838 bytes |
コンパイル時間 | 1,911 ms |
コンパイル使用メモリ | 179,744 KB |
実行使用メモリ | 183,040 KB |
最終ジャッジ日時 | 2024-10-01 12:09:12 |
合計ジャッジ時間 | 23,410 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 23 ms
34,432 KB |
testcase_01 | AC | 24 ms
34,432 KB |
testcase_02 | AC | 1,152 ms
183,040 KB |
testcase_03 | AC | 771 ms
97,136 KB |
testcase_04 | AC | 1,162 ms
74,576 KB |
testcase_05 | AC | 2,429 ms
103,944 KB |
testcase_06 | AC | 683 ms
60,544 KB |
testcase_07 | AC | 123 ms
40,792 KB |
testcase_08 | AC | 183 ms
44,032 KB |
testcase_09 | AC | 82 ms
38,400 KB |
testcase_10 | AC | 265 ms
47,636 KB |
testcase_11 | AC | 1,328 ms
78,208 KB |
testcase_12 | AC | 762 ms
61,048 KB |
testcase_13 | AC | 394 ms
48,048 KB |
testcase_14 | AC | 69 ms
37,572 KB |
testcase_15 | AC | 614 ms
55,036 KB |
testcase_16 | AC | 1,650 ms
83,712 KB |
testcase_17 | AC | 1,617 ms
85,760 KB |
testcase_18 | AC | 256 ms
47,616 KB |
testcase_19 | AC | 1,450 ms
79,360 KB |
testcase_20 | AC | 100 ms
39,296 KB |
testcase_21 | AC | 169 ms
43,136 KB |
testcase_22 | AC | 1,100 ms
71,168 KB |
testcase_23 | AC | 500 ms
56,448 KB |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:70:14: warning: 'root' may be used uninitialized [-Wmaybe-uninitialized] 70 | babycount(root,-1); | ~~~~~~~~~^~~~~~~~~ main.cpp:62:9: note: 'root' was declared here 62 | int root; | ^~~~
ソースコード
#include <bits/stdc++.h> using namespace std; using ll=long long; using vin=vector<int>; using vll=vector<long long>; using vvin=vector<vector<int>>; using vvll=vector<vector<long long>>; using vstr=vector<string>; using vvstr=vector<vector<string>>; using vch=vector<char>; using vvch=vector<vector<char>>; using vbo=vector<bool>; using vvbo=vector<vector<bool>>; using vpii=vector<pair<int,int>>; using pqsin=priority_queue<int,vector<int>,greater<int>>; #define mp make_pair #define rep(i,n) for(int i=0;i<(int)(n);i++) #define rep2(i,s,n) for(int i=(s);i<(int)(n);i++) #define all(v) v.begin(),v.end() #define decp(n) cout<<fixed<<setprecision((int)n) const ll inf=1e9+7; const ll INF=1e18; int MAX_N=1000020; vvin baby(MAX_N); vin d(MAX_N); void deep(int root){ queue<int> q;q.push(root); fill(all(d),0); while(q.size()){ int p=q.front();q.pop(); if(baby[p].size()==0)continue; for(auto b:baby[p]){ d[b]=d[p]+1; q.push(b); } } } vin babynum(MAX_N,1); void babycount(int v,int p){//自身を含む子孫の数 if(baby[v].size()==0)return; for(auto b:baby[v]){ if(b==p)continue; babycount(b,v); babynum[v]+=babynum[b]; } } int main(){ int n;cin>>n; vin a(n-1),b(n-1); set<int> notroot; rep(i,n-1){ cin>>a[i]>>b[i]; baby[a[i]].push_back(b[i]); notroot.insert(b[i]); } int root; rep(i,n){ if(!notroot.count(i+1)){ root=i+1; break; } } deep(root); babycount(root,-1); ll ans=(ll)0; rep(i,n-1){ ans+=((ll)(d[a[i]]+1)*(ll)babynum[b[i]])%inf; ans%=inf; } cout<<ans<<endl; //cout<<root<<endl; //rep(i,n)cout<<d[i+1]<<" ";cout<<endl; //rep(i,n)cout<<babynum[i+1]<<" ";cout<<endl; }