結果

問題 No.1103 Directed Length Sum
ユーザー coco18000coco18000
提出日時 2020-07-03 22:08:14
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 642 ms / 3,000 ms
コード長 1,105 bytes
コンパイル時間 1,736 ms
コンパイル使用メモリ 170,280 KB
実行使用メモリ 107,520 KB
最終ジャッジ日時 2024-09-17 02:19:31
合計ジャッジ時間 9,078 ms
ジャッジサーバーID
(参考情報)
judge5 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
42,496 KB
testcase_01 AC 17 ms
42,496 KB
testcase_02 AC 300 ms
107,520 KB
testcase_03 AC 180 ms
58,240 KB
testcase_04 AC 350 ms
57,472 KB
testcase_05 AC 642 ms
68,352 KB
testcase_06 AC 222 ms
52,224 KB
testcase_07 AC 50 ms
44,800 KB
testcase_08 AC 74 ms
46,080 KB
testcase_09 AC 36 ms
44,032 KB
testcase_10 AC 102 ms
47,616 KB
testcase_11 AC 386 ms
58,880 KB
testcase_12 AC 236 ms
52,224 KB
testcase_13 AC 107 ms
47,488 KB
testcase_14 AC 31 ms
43,648 KB
testcase_15 AC 170 ms
50,048 KB
testcase_16 AC 450 ms
60,672 KB
testcase_17 AC 465 ms
61,696 KB
testcase_18 AC 109 ms
47,488 KB
testcase_19 AC 400 ms
59,264 KB
testcase_20 AC 41 ms
44,288 KB
testcase_21 AC 69 ms
45,696 KB
testcase_22 AC 324 ms
56,320 KB
testcase_23 AC 189 ms
50,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

typedef long long int ll;
typedef pair<ll, ll> pll;

#define FOR(i, n, m) for(ll (i)=(m);(i)<(n);++(i))
#define REP(i, n) FOR(i,n,0)
#define OF64 std::setprecision(10)

const ll MOD = 1000000007;
const ll INF = (ll) 1e15;

struct Vertex {
    vector<ll> children;
    ll parent = -1;
    ll depth = 0;
};

Vertex V[1000005];

void dfs(ll node, ll depth = 0) {
    V[node].depth = depth;
    for (auto &n:V[node].children) {
        dfs(n, depth + 1);
    }
}

ll C[1000005];

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);
    ll N;
    cin >> N;
    REP(i, N - 1) {
        ll a, b;
        cin >> a >> b;
        a--;
        b--;
        V[a].children.push_back(b);
        V[b].parent = a;
    }

    ll root = 0;
    REP(i, N) {
        if (V[i].parent < 0) {
            root = i;
            break;
        }
    }

    dfs(root);
    C[0] = 0;
    REP(i, N + 2) {
        C[i + 1] = (C[i] + i + 1) % MOD;
    }

    ll ans = 0;
    REP(i, N) {
        ans = (ans + C[V[i].depth]) % MOD;
    }
    cout << ans << endl;

    return 0;
}
0