結果

問題 No.1103 Directed Length Sum
ユーザー hs0319boyhs0319boy
提出日時 2020-07-07 17:55:59
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,059 ms / 3,000 ms
コード長 1,844 bytes
コンパイル時間 2,119 ms
コンパイル使用メモリ 177,192 KB
実行使用メモリ 136,192 KB
最終ジャッジ日時 2024-10-01 14:11:06
合計ジャッジ時間 14,532 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
34,432 KB
testcase_01 AC 24 ms
34,500 KB
testcase_02 AC 747 ms
136,192 KB
testcase_03 AC 497 ms
50,536 KB
testcase_04 AC 553 ms
48,384 KB
testcase_05 AC 1,059 ms
58,564 KB
testcase_06 AC 340 ms
43,648 KB
testcase_07 AC 83 ms
36,608 KB
testcase_08 AC 117 ms
37,828 KB
testcase_09 AC 61 ms
35,960 KB
testcase_10 AC 158 ms
39,028 KB
testcase_11 AC 621 ms
49,664 KB
testcase_12 AC 332 ms
43,520 KB
testcase_13 AC 157 ms
39,268 KB
testcase_14 AC 52 ms
35,584 KB
testcase_15 AC 268 ms
41,600 KB
testcase_16 AC 698 ms
51,456 KB
testcase_17 AC 752 ms
52,096 KB
testcase_18 AC 159 ms
38,964 KB
testcase_19 AC 660 ms
49,920 KB
testcase_20 AC 70 ms
36,096 KB
testcase_21 AC 114 ms
37,504 KB
testcase_22 AC 525 ms
47,208 KB
testcase_23 AC 275 ms
42,112 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;
      |         ^~~~

ソースコード

diff #

#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);
    vbo notroot(n+1,false);
    rep(i,n-1){
        cin>>a[i]>>b[i];
        baby[a[i]].push_back(b[i]);
        notroot[b[i]]=true;
    }
    int root;
    rep(i,n){
        if(!notroot[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;
}
0