結果

問題 No.1103 Directed Length Sum
ユーザー ShibuyapShibuyap
提出日時 2020-07-03 21:48:09
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,143 ms / 3,000 ms
コード長 1,001 bytes
コンパイル時間 2,186 ms
コンパイル使用メモリ 207,296 KB
実行使用メモリ 69,888 KB
最終ジャッジ日時 2024-09-17 00:06:25
合計ジャッジ時間 13,116 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
26,880 KB
testcase_01 AC 11 ms
26,880 KB
testcase_02 AC 703 ms
69,888 KB
testcase_03 AC 510 ms
46,364 KB
testcase_04 AC 622 ms
42,880 KB
testcase_05 AC 1,143 ms
54,528 KB
testcase_06 AC 380 ms
37,376 KB
testcase_07 AC 85 ms
29,440 KB
testcase_08 AC 127 ms
30,592 KB
testcase_09 AC 60 ms
28,544 KB
testcase_10 AC 178 ms
32,000 KB
testcase_11 AC 686 ms
44,288 KB
testcase_12 AC 397 ms
37,376 KB
testcase_13 AC 187 ms
32,256 KB
testcase_14 AC 50 ms
28,032 KB
testcase_15 AC 300 ms
35,200 KB
testcase_16 AC 791 ms
46,592 KB
testcase_17 AC 818 ms
47,232 KB
testcase_18 AC 183 ms
32,000 KB
testcase_19 AC 722 ms
44,800 KB
testcase_20 AC 68 ms
28,800 KB
testcase_21 AC 116 ms
30,336 KB
testcase_22 AC 566 ms
41,472 KB
testcase_23 AC 313 ms
35,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i = 0; i < (n); ++i)
#define srep(i,s,t) for (int i = s; i < t; ++i)
#define drep(i,n) for(int i = (n)-1; i >= 0; --i)
using namespace std;
typedef long long int ll;
typedef pair<int,int> P;
#define yn {puts("YES");}else{puts("NO");}
#define MAX_N 1000005

vector<int> G[MAX_N];
int par_[MAX_N];

int main() {
    int n;
    cin >> n;
    rep(i,n)par_[i] = -1;

    ll MOD = 1000000007;
    rep(i,n-1){
        int a, b;
        cin >> a >> b;
        a--; b--;
        G[a].push_back(b);
        par_[b] = a;
    }

    int r = -1;
    rep(i,n)if(par_[i] == -1)r = i;

    ll ans = 0;
    
    queue<int> que;
    que.push(r);
    ll d[n] = {};
    while(que.size()>0){
        int x = que.front();
        que.pop();
        ans += d[x] * (d[x] + 1) / 2;
        ans %= MOD;
        rep(i,G[x].size()){
            int y = G[x][i];
            d[y] = d[x] + 1;
            que.push(y);
        }
    }

    cout << ans << endl;
    return 0;
}
 
 

0