結果

問題 No.1333 Squared Sum
ユーザー penguinmanpenguinman
提出日時 2020-10-30 04:34:57
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 386 ms / 2,000 ms
コード長 2,112 bytes
コンパイル時間 2,034 ms
コンパイル使用メモリ 182,280 KB
実行使用メモリ 54,784 KB
最終ジャッジ日時 2024-07-21 22:47:50
合計ジャッジ時間 13,010 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 375 ms
30,076 KB
testcase_04 AC 343 ms
30,072 KB
testcase_05 AC 350 ms
29,972 KB
testcase_06 AC 329 ms
30,080 KB
testcase_07 AC 341 ms
29,976 KB
testcase_08 AC 345 ms
30,088 KB
testcase_09 AC 326 ms
30,080 KB
testcase_10 AC 331 ms
30,016 KB
testcase_11 AC 342 ms
30,048 KB
testcase_12 AC 343 ms
30,088 KB
testcase_13 AC 291 ms
54,656 KB
testcase_14 AC 374 ms
42,444 KB
testcase_15 AC 379 ms
51,832 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 1 ms
5,376 KB
testcase_26 AC 386 ms
54,228 KB
testcase_27 AC 372 ms
43,136 KB
testcase_28 AC 374 ms
54,012 KB
testcase_29 AC 289 ms
54,784 KB
testcase_30 AC 95 ms
14,464 KB
testcase_31 AC 46 ms
9,600 KB
testcase_32 AC 172 ms
19,444 KB
testcase_33 AC 132 ms
16,000 KB
testcase_34 AC 292 ms
24,788 KB
testcase_35 AC 174 ms
19,456 KB
testcase_36 AC 101 ms
12,928 KB
testcase_37 AC 83 ms
13,312 KB
testcase_38 AC 124 ms
14,976 KB
testcase_39 AC 212 ms
21,580 KB
testcase_40 AC 275 ms
31,232 KB
testcase_41 AC 246 ms
31,356 KB
testcase_42 AC 267 ms
31,360 KB
testcase_43 AC 266 ms
31,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using std::cin;
using std::cout;
#define endl "\n"
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(){
    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
    //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