結果

問題 No.1103 Directed Length Sum
ユーザー roarisroaris
提出日時 2020-07-03 22:00:28
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 758 ms / 3,000 ms
コード長 952 bytes
コンパイル時間 2,315 ms
コンパイル使用メモリ 208,288 KB
実行使用メモリ 135,136 KB
最終ジャッジ日時 2024-09-17 00:49:12
合計ジャッジ時間 9,464 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
26,880 KB
testcase_01 AC 13 ms
26,752 KB
testcase_02 AC 336 ms
135,136 KB
testcase_03 AC 185 ms
73,820 KB
testcase_04 AC 416 ms
59,164 KB
testcase_05 AC 758 ms
83,092 KB
testcase_06 AC 253 ms
47,888 KB
testcase_07 AC 44 ms
38,008 KB
testcase_08 AC 71 ms
39,380 KB
testcase_09 AC 31 ms
36,648 KB
testcase_10 AC 96 ms
42,528 KB
testcase_11 AC 415 ms
66,128 KB
testcase_12 AC 236 ms
52,944 KB
testcase_13 AC 102 ms
42,428 KB
testcase_14 AC 27 ms
33,440 KB
testcase_15 AC 173 ms
48,500 KB
testcase_16 AC 468 ms
74,876 KB
testcase_17 AC 503 ms
76,568 KB
testcase_18 AC 99 ms
43,132 KB
testcase_19 AC 428 ms
68,268 KB
testcase_20 AC 40 ms
36,056 KB
testcase_21 AC 64 ms
40,976 KB
testcase_22 AC 336 ms
63,728 KB
testcase_23 AC 180 ms
52,008 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:38:8: warning: 'root' may be used uninitialized [-Wmaybe-uninitialized]
   38 |     dfs(root, -1, 0);
      |     ~~~^~~~~~~~~~~~~
main.cpp:36:9: note: 'root' was declared here
   36 |     int root;
      |         ^~~~

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for (int i=0; i<n; i++)
#define pb push_back
#define int long long
const int MOD = 1000000007;
typedef pair<int, int> P;

int N;
vector<int> G[1000010];
vector<P> edges;
int deg[1000010];
int depth[1000010];
int ch[1000010];

int dfs(int v, int pv, int dep) {
    depth[v] = dep;
    int res = 1;
    for (auto& nv:G[v]) {
        if (nv==pv) continue;
        res += dfs(nv, v, dep+1);
    }
    return ch[v] = res;
}
 
signed main() {
    cin.tie(0); ios::sync_with_stdio(false);
    cin >> N;
    rep(i, N-1) {
        int A, B; cin >> A >> B;
        G[A-1].pb(B-1);
        deg[B-1]++;
        edges.pb(P(A-1, B-1));
    }
    
    int root;
    rep(i, N) if (deg[i]==0) root = i;
    dfs(root, -1, 0);
    
    int ans = 0;
    rep(i, N-1) {
        int A = edges[i].first, B = edges[i].second;
        ans += ch[B]*(depth[A]+1);
        ans %= MOD;
    }
    cout << ans << endl;
}
0