結果

問題 No.1333 Squared Sum
ユーザー penguinmanpenguinman
提出日時 2020-10-30 04:26:25
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 457 ms / 2,000 ms
コード長 2,046 bytes
コンパイル時間 1,744 ms
コンパイル使用メモリ 184,012 KB
実行使用メモリ 54,848 KB
最終ジャッジ日時 2024-07-21 22:47:36
合計ジャッジ時間 13,768 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 375 ms
30,056 KB
testcase_04 AC 384 ms
30,044 KB
testcase_05 AC 386 ms
30,080 KB
testcase_06 AC 457 ms
29,984 KB
testcase_07 AC 391 ms
30,080 KB
testcase_08 AC 386 ms
30,160 KB
testcase_09 AC 396 ms
29,988 KB
testcase_10 AC 401 ms
29,996 KB
testcase_11 AC 414 ms
30,172 KB
testcase_12 AC 410 ms
30,020 KB
testcase_13 AC 373 ms
54,780 KB
testcase_14 AC 408 ms
42,636 KB
testcase_15 AC 428 ms
51,868 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 1 ms
6,940 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 1 ms
6,940 KB
testcase_20 AC 1 ms
6,940 KB
testcase_21 AC 1 ms
6,940 KB
testcase_22 AC 1 ms
6,940 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 1 ms
6,940 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 417 ms
54,188 KB
testcase_27 AC 419 ms
43,252 KB
testcase_28 AC 424 ms
54,040 KB
testcase_29 AC 369 ms
54,848 KB
testcase_30 AC 132 ms
14,464 KB
testcase_31 AC 67 ms
9,600 KB
testcase_32 AC 205 ms
19,544 KB
testcase_33 AC 150 ms
16,128 KB
testcase_34 AC 275 ms
24,848 KB
testcase_35 AC 203 ms
19,452 KB
testcase_36 AC 106 ms
12,928 KB
testcase_37 AC 114 ms
13,312 KB
testcase_38 AC 136 ms
14,976 KB
testcase_39 AC 245 ms
21,808 KB
testcase_40 AC 349 ms
31,336 KB
testcase_41 AC 329 ms
31,336 KB
testcase_42 AC 332 ms
31,332 KB
testcase_43 AC 296 ms
31,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using std::cin;
using std::cout;
using std::endl;
using std::vector;
using ll=long long;
//宣言、modpow
const int mod=1e9+7;
vector<vector<int>> edge,weight;
vector<ll> dp,subtree,sum;
vector<bool> flag;
ll ans=0;
ll modpow(ll x,ll y){
    ll ret=1;
    while(y){
        if(y&1){
            ret*=x;
            ret%=mod;
        }
        x*=x;
        x%=mod;
        y/=2;
    }
    return ret;
}
//dfs
void dfs(int now){
    flag[now]=1;
    for(int i=0;i<edge[now].size();i++){
        int next=edge[now][i];
        ll w=weight[now][i];
        if(flag[next]) continue;

        dfs(next);
        subtree[now]+=subtree[next];
        dp[now]+=dp[next]+subtree[next]*w%mod*w%mod+sum[next]*w%mod*2%mod;
        dp[now]%=mod;
        sum[now]+=sum[next]+w*subtree[next]%mod;
        sum[now]%=mod;
    }
}
//rerooting
void reroot(int now){
    flag[now]=0;
    ans+=dp[now];
    ans%=mod;
    for(int i=0;i<edge[now].size();i++){
        int next=edge[now][i];
        ll w=weight[now][i];
        if(!flag[next]) continue;

        ll dp2=dp[now]-dp[next]-subtree[next]*w%mod*w%mod-sum[next]*w%mod*2%mod;
        dp2%=mod;
        if(dp2<0) dp2+=mod;

        ll sum2=sum[now]-sum[next]-w*subtree[next]%mod;
        sum2%=mod;
        if(sum2<0) sum2+=mod;

        ll subtree2=subtree[now]-subtree[next];

        dp[next]+=dp2+subtree2*w%mod*w%mod+sum2*w%mod*2%mod;
        dp[next]%=mod;
        sum[next]+=sum2+w*subtree2%mod;
        sum[next]%=mod;
        subtree[next]+=subtree2;
        reroot(next);
    }
}
//main
int main(){
    //resize、input
    int N; cin>>N;
    edge.resize(N);
    weight.resize(N);
    dp.resize(N);
    subtree.resize(N,1);
    sum.resize(N);
    flag.resize(N);
    for(int i=1;i<N;i++){
        int x,y,z; cin>>x>>y>>z;
        edge[x-1].push_back(y-1);
        edge[y-1].push_back(x-1);
        weight[x-1].push_back(z);
        weight[y-1].push_back(z);
    }
    //求値、output
    dfs(0);
    reroot(0);
    ans*=modpow(2,mod-2);
    ans%=mod;
    cout<<ans<<endl;
}
0