結果

問題 No.1103 Directed Length Sum
ユーザー milanis48663220milanis48663220
提出日時 2020-07-03 21:55:04
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 907 ms / 3,000 ms
コード長 849 bytes
コンパイル時間 893 ms
コンパイル使用メモリ 85,756 KB
実行使用メモリ 109,824 KB
最終ジャッジ日時 2024-09-17 00:38:15
合計ジャッジ時間 9,531 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
26,752 KB
testcase_01 AC 11 ms
26,752 KB
testcase_02 AC 354 ms
109,824 KB
testcase_03 AC 242 ms
66,688 KB
testcase_04 AC 479 ms
47,744 KB
testcase_05 AC 907 ms
63,204 KB
testcase_06 AC 305 ms
40,576 KB
testcase_07 AC 63 ms
30,080 KB
testcase_08 AC 96 ms
32,072 KB
testcase_09 AC 37 ms
28,928 KB
testcase_10 AC 147 ms
33,792 KB
testcase_11 AC 555 ms
49,664 KB
testcase_12 AC 360 ms
40,704 KB
testcase_13 AC 158 ms
34,048 KB
testcase_14 AC 32 ms
28,544 KB
testcase_15 AC 248 ms
37,504 KB
testcase_16 AC 650 ms
52,352 KB
testcase_17 AC 664 ms
53,632 KB
testcase_18 AC 132 ms
33,792 KB
testcase_19 AC 551 ms
50,176 KB
testcase_20 AC 44 ms
29,440 KB
testcase_21 AC 83 ms
31,488 KB
testcase_22 AC 441 ms
45,824 KB
testcase_23 AC 239 ms
38,272 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:44:8: warning: 'r' may be used uninitialized [-Wmaybe-uninitialized]
   44 |     dfs(r, 0);
      |     ~~~^~~~~~
main.cpp:37:9: note: 'r' was declared here
   37 |     int r;
      |         ^

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <iomanip>
#include <vector>
#include <queue>
#include <set>
#include <map>

using namespace std;
typedef long long ll;
ll N;
int par[1000001];
const ll MOD = 1000000007;

vector<int> G[1000000];
bool used[1000000];
ll ans;
void dfs(int v,ll d){
    used[v] = true;
    ans += (d*(d+1))/2;
    for(int to : G[v]){
        if(!used[to]) dfs(to, d+1);
    }
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout << setprecision(10) << fixed;
    cin >> N;
    for(int i = 0; i < N-1; i++){
        int a, b; cin >> a >> b;
        par[b] = a;
        a--; b--;
        G[a].push_back(b); G[b].push_back(a);
    }
    int r;
    for(int i = 1; i <= N; i++){
        if(par[i] == 0){
            r = i-1;
            break;
        }
    }
    dfs(r, 0);
    cout << ans%MOD << endl;
}
0