結果

問題 No.1103 Directed Length Sum
ユーザー hedwig100hedwig100
提出日時 2020-07-03 23:12:39
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,027 ms / 3,000 ms
コード長 998 bytes
コンパイル時間 1,665 ms
コンパイル使用メモリ 173,880 KB
実行使用メモリ 112,544 KB
最終ジャッジ日時 2024-09-17 04:52:00
合計ジャッジ時間 11,650 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 753 ms
112,544 KB
testcase_03 AC 493 ms
39,656 KB
testcase_04 AC 562 ms
29,848 KB
testcase_05 AC 1,027 ms
49,408 KB
testcase_06 AC 351 ms
20,636 KB
testcase_07 AC 69 ms
7,424 KB
testcase_08 AC 109 ms
9,612 KB
testcase_09 AC 42 ms
6,944 KB
testcase_10 AC 157 ms
12,092 KB
testcase_11 AC 622 ms
32,320 KB
testcase_12 AC 354 ms
20,716 KB
testcase_13 AC 162 ms
12,260 KB
testcase_14 AC 32 ms
6,944 KB
testcase_15 AC 267 ms
16,940 KB
testcase_16 AC 712 ms
35,920 KB
testcase_17 AC 725 ms
37,356 KB
testcase_18 AC 149 ms
11,936 KB
testcase_19 AC 636 ms
33,136 KB
testcase_20 AC 50 ms
6,940 KB
testcase_21 AC 99 ms
8,960 KB
testcase_22 AC 519 ms
27,588 KB
testcase_23 AC 285 ms
17,896 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:48:14: warning: 'root' may be used uninitialized [-Wmaybe-uninitialized]
   48 |     dist[root] = 0;
      |              ^
main.cpp:41:9: note: 'root' was declared here
   41 |     int root;
      |         ^~~~

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i=0;i<(int)(n);i++)
using namespace std;
using ll = long long ;
using P = pair<int,int> ;
using pll = pair<long long,long long>;
constexpr int INF = 1e9;
constexpr long long LINF = 1e17;
constexpr int MOD = 1000000007;
constexpr double PI = 3.14159265358979323846;

int N;
vector<vector<int>> G;
ll ans = 0;
vector<int> dist(N);

int dfs(int v) {
    int cnt = 1;
    for (int e:G[v]) {
        dist[e] = dist[v] + 1;
        cnt += dfs(e);
    }
    ans += (ll)cnt*dist[v];
    ans %= MOD;
    return cnt;
}

int main(){
    cin >> N;
    G.resize(N);
    dist.resize(N);
    fill(dist.begin(),dist.end(),-1);
    vector<int> deg(N,0);

    rep(i,N - 1) {
        int a,b; cin >> a >> b;
        --a; --b;
        G[a].push_back(b);
        deg[b] ++;
    }
    int root;
    rep(i,N) {
        if (deg[i] == 0) {
            root = i;
            break;
        }
    }
    dist[root] = 0;
    dfs(root);
    cout << ans << endl;
    return 0;
}
0