結果

問題 No.1103 Directed Length Sum
ユーザー betrue12betrue12
提出日時 2020-07-03 21:46:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 956 ms / 3,000 ms
コード長 802 bytes
コンパイル時間 2,072 ms
コンパイル使用メモリ 206,408 KB
実行使用メモリ 91,264 KB
最終ジャッジ日時 2024-09-16 23:59:13
合計ジャッジ時間 12,391 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 18 ms
27,008 KB
testcase_01 AC 19 ms
26,880 KB
testcase_02 AC 741 ms
91,264 KB
testcase_03 AC 497 ms
31,060 KB
testcase_04 AC 534 ms
36,096 KB
testcase_05 AC 956 ms
42,752 KB
testcase_06 AC 352 ms
32,896 KB
testcase_07 AC 84 ms
28,288 KB
testcase_08 AC 126 ms
29,056 KB
testcase_09 AC 58 ms
27,776 KB
testcase_10 AC 162 ms
29,920 KB
testcase_11 AC 604 ms
36,864 KB
testcase_12 AC 354 ms
32,896 KB
testcase_13 AC 178 ms
29,952 KB
testcase_14 AC 41 ms
27,392 KB
testcase_15 AC 272 ms
31,572 KB
testcase_16 AC 677 ms
38,144 KB
testcase_17 AC 701 ms
38,784 KB
testcase_18 AC 165 ms
29,916 KB
testcase_19 AC 615 ms
37,120 KB
testcase_20 AC 60 ms
27,996 KB
testcase_21 AC 105 ms
28,872 KB
testcase_22 AC 482 ms
35,392 KB
testcase_23 AC 281 ms
31,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

const int64_t MOD = 1e9+7;
void add(int64_t& a, int64_t b){
    a = (a+b) % MOD;
}
void mul(int64_t& a, int64_t b){
    a = a*b % MOD;
}

int main(){
    int N;
    cin >> N;
    static vector<int> edges[1000000];
    vector<bool> in(N);
    for(int i=0; i<N-1; i++){
        int a, b;
        cin >> a >> b;
        edges[a-1].push_back(b-1);
        in[b-1] = true;
    }
    int R = -1;
    for(int i=0; i<N; i++) if(!in[i]) R = i;

    int64_t ans = 0;
    auto dfs = [&](auto&& dfs, int i, int64_t d)->int{
        int res = 1;
        for(int j : edges[i]){
            int low = dfs(dfs, j, d+1);
            add(ans, d*low);
            res += low;
        }
        return res;
    };
    dfs(dfs, R, 1);
    cout << ans << endl;
    return 0;
}
0