結果

問題 No.1103 Directed Length Sum
ユーザー KKT89KKT89
提出日時 2020-07-05 06:35:27
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 565 ms / 3,000 ms
コード長 938 bytes
コンパイル時間 1,311 ms
コンパイル使用メモリ 114,416 KB
実行使用メモリ 132,608 KB
最終ジャッジ日時 2024-09-21 21:18:10
合計ジャッジ時間 10,217 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
27,136 KB
testcase_01 AC 10 ms
27,264 KB
testcase_02 AC 348 ms
132,608 KB
testcase_03 AC 188 ms
42,696 KB
testcase_04 AC 315 ms
43,008 KB
testcase_05 AC 565 ms
54,400 KB
testcase_06 AC 195 ms
37,376 KB
testcase_07 AC 44 ms
29,696 KB
testcase_08 AC 64 ms
30,976 KB
testcase_09 AC 30 ms
28,800 KB
testcase_10 AC 95 ms
32,384 KB
testcase_11 AC 345 ms
44,288 KB
testcase_12 AC 204 ms
37,504 KB
testcase_13 AC 97 ms
32,384 KB
testcase_14 AC 28 ms
28,416 KB
testcase_15 AC 158 ms
35,200 KB
testcase_16 AC 393 ms
46,464 KB
testcase_17 AC 408 ms
47,232 KB
testcase_18 AC 91 ms
32,384 KB
testcase_19 AC 347 ms
44,672 KB
testcase_20 AC 35 ms
28,928 KB
testcase_21 AC 59 ms
30,464 KB
testcase_22 AC 289 ms
41,600 KB
testcase_23 AC 163 ms
35,712 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:49:8: warning: 's' may be used uninitialized [-Wmaybe-uninitialized]
   49 |     dfs(s);
      |     ~~~^~~
main.cpp:45:9: note: 's' was declared here
   45 |     int s;
      |         ^

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <map>
#include <queue>
#include <cstdio>
#include <ctime>
#include <assert.h>
#include <chrono>
#include <random>
#include <numeric>
#include <set>
using namespace std;
typedef long long int ll;
using ull = unsigned long long;

constexpr ll mod=1e9+7;
int n;
ll res=0;
vector<int> g[1001000];
int d[1001000];
ll dp[1001000];

void dfs(int s){
    d[s]=1;
    for(int t:g[s]){
        dfs(t);
        d[s]+=d[t];
        (dp[s]+=dp[t])%=mod;
    }
    dp[s]+=d[s]-1;
}

int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    cin >> n;
    vector<bool> v(n,true);
    for(int i=1;i<n;i++){
        int a,b; cin >> a >> b;
        a--; b--;
        g[a].push_back(b);
        v[b]=false;
    }
    int s;
    for(int i=0;i<n;i++){
        if(v[i])s=i;
    }
    dfs(s);
    for(int i=0;i<n;i++){
        (res+=dp[i])%=mod;
    }
    printf("%lld\n",res);
}
0