結果

問題 No.1207 グラフX
ユーザー penguinmanpenguinman
提出日時 2020-07-29 18:28:41
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 458 ms / 2,000 ms
コード長 2,056 bytes
コンパイル時間 1,802 ms
コンパイル使用メモリ 174,724 KB
実行使用メモリ 51,424 KB
最終ジャッジ日時 2023-09-18 05:25:36
合計ジャッジ時間 18,219 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 365 ms
28,172 KB
testcase_01 AC 362 ms
28,108 KB
testcase_02 AC 358 ms
28,404 KB
testcase_03 AC 365 ms
28,096 KB
testcase_04 AC 367 ms
28,092 KB
testcase_05 AC 458 ms
51,424 KB
testcase_06 AC 448 ms
51,416 KB
testcase_07 AC 453 ms
51,396 KB
testcase_08 AC 299 ms
17,788 KB
testcase_09 AC 311 ms
22,176 KB
testcase_10 AC 441 ms
40,048 KB
testcase_11 AC 454 ms
51,352 KB
testcase_12 AC 297 ms
19,476 KB
testcase_13 AC 173 ms
6,940 KB
testcase_14 AC 355 ms
27,008 KB
testcase_15 AC 314 ms
21,392 KB
testcase_16 AC 171 ms
8,256 KB
testcase_17 AC 243 ms
16,604 KB
testcase_18 AC 193 ms
17,440 KB
testcase_19 AC 256 ms
11,676 KB
testcase_20 AC 361 ms
27,376 KB
testcase_21 AC 29 ms
4,376 KB
testcase_22 AC 243 ms
16,844 KB
testcase_23 AC 261 ms
19,376 KB
testcase_24 AC 168 ms
15,512 KB
testcase_25 AC 359 ms
27,668 KB
testcase_26 AC 279 ms
20,712 KB
testcase_27 AC 336 ms
24,548 KB
testcase_28 AC 317 ms
22,264 KB
testcase_29 AC 312 ms
24,264 KB
testcase_30 AC 166 ms
11,224 KB
testcase_31 AC 147 ms
5,668 KB
testcase_32 AC 133 ms
12,132 KB
testcase_33 AC 146 ms
12,000 KB
testcase_34 AC 302 ms
21,200 KB
testcase_35 AC 30 ms
4,380 KB
testcase_36 AC 298 ms
22,024 KB
testcase_37 AC 267 ms
17,708 KB
testcase_38 AC 68 ms
6,900 KB
testcase_39 AC 151 ms
12,796 KB
testcase_40 AC 118 ms
4,380 KB
testcase_41 AC 225 ms
11,952 KB
testcase_42 AC 1 ms
4,376 KB
testcase_43 AC 2 ms
4,376 KB
testcase_44 AC 1 ms
4,376 KB
testcase_45 AC 334 ms
28,148 KB
testcase_46 AC 332 ms
28,068 KB
testcase_47 AC 336 ms
28,016 KB
testcase_48 AC 333 ms
28,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
//事前処理とUnion-Find
using std::cin;
using std::cout;
using std::endl;
using std::vector;
using ll=long long;
const ll MOD=1e9+7;
struct Union_Find{
    int N;
    vector<int> par;
    Union_Find(int n):N(n){
        par.resize(N);
        for(int i=0;i<N;i++) par[i]=i;
    }
    int root(int X){
        if(par[X]==X) return X;
        return par[X]=root(par[X]);
    }
    bool same(int X,int Y){
        return root(X)==root(Y);
    }
    void unite(int X,int Y){
        X=root(X),Y=root(Y);
        if(X!=Y) par[X]=Y;
    }
};
ll modpow(ll X,ll Y){
    ll ret=1;
    while(Y>0){
        if(Y%2){
            ret*=X;
            ret%=MOD;
        }
        Y/=2;
        X*=X;
        X%=MOD;
    }
    return ret;
}
void dfs(int N,int X,int now,vector<bool> &seen,vector<vector<int>> &edge,vector<vector<int>> &weight,vector<int> &subtree,ll &ans){
    seen[now]=1;
    for(int i=0;i<edge[now].size();i++){
        int next=edge[now][i];
        if(!seen[next]){
            dfs(N,X,next,seen,edge,weight,subtree,ans);
            subtree[now]+=subtree[next];
            ans+=modpow(X,weight[now][i])*subtree[next]%MOD*(N-subtree[next])%MOD;
            ans%=MOD;
        }
    }
    subtree[now]++;
}
int main(){
    int N,M,X; cin>>N>>M>>X;
    ll max=2e5,max2=1e9;;
    assert(2<=N&&N<=max&&N-1<=M&&M<=max&&2<=X&&X<=max2);
    vector<vector<int>> edge(N),weight(N);
    Union_Find UF(N);
    //最小全域木を作る
    ll memo=-1;
    for(int i=0;i<M;i++){
        int x,y,z; cin>>x>>y>>z;
        assert(1<=x&&x<=N&&1<=y&&y<=N&&0<=z&&z<=max2);
        assert(memo<z);
        memo=z;
        if(!UF.same(x-1,y-1)){
            UF.unite(x-1,y-1);
            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);
        }
    }
    //dfsで各辺が経路になる回数を数えていく
    vector<int> subtree(N);
    vector<bool> seen(N);
    ll ans=0;
    dfs(N,X,0,seen,edge,weight,subtree,ans);
    cout<<ans<<endl;
}
0