結果

問題 No.1207 グラフX
ユーザー auauaauaua
提出日時 2020-08-30 14:53:59
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,978 bytes
コンパイル時間 1,814 ms
コンパイル使用メモリ 175,336 KB
実行使用メモリ 16,672 KB
最終ジャッジ日時 2024-04-27 07:46:26
合計ジャッジ時間 12,044 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 AC 178 ms
11,912 KB
testcase_14 RE -
testcase_15 RE -
testcase_16 AC 165 ms
12,784 KB
testcase_17 RE -
testcase_18 RE -
testcase_19 AC 262 ms
14,664 KB
testcase_20 RE -
testcase_21 AC 35 ms
9,636 KB
testcase_22 RE -
testcase_23 RE -
testcase_24 WA -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 AC 157 ms
14,256 KB
testcase_31 AC 154 ms
11,080 KB
testcase_32 AC 123 ms
14,716 KB
testcase_33 AC 138 ms
14,444 KB
testcase_34 RE -
testcase_35 AC 36 ms
9,696 KB
testcase_36 RE -
testcase_37 RE -
testcase_38 AC 79 ms
11,712 KB
testcase_39 AC 155 ms
15,592 KB
testcase_40 AC 129 ms
9,860 KB
testcase_41 AC 238 ms
14,988 KB
testcase_42 AC 6 ms
9,592 KB
testcase_43 AC 6 ms
9,436 KB
testcase_44 AC 6 ms
9,592 KB
testcase_45 RE -
testcase_46 RE -
testcase_47 RE -
testcase_48 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define int long long
#define REP(i,m,n) for(int i=(m);i<(n);i++)
#define rep(i,n) REP(i,0,n)
#define pb push_back
#define all(a) a.begin(),a.end()
#define rall(c) (c).rbegin(),(c).rend()
#define mp make_pair
#define endl '\n'
#define vec vector<ll>
#define mat vector<vector<ll> >
#define fi first
#define se second
typedef long long ll;
typedef unsigned long long ull;
typedef pair<ll,ll> pll;
typedef long double ld;
typedef complex<double> comp;
const ll inf=1e9+7;
const ll mod=1e9+7;
const int MAX=200010;

//Union-Find木


int siz[100010];
int par[100010];
int depth[100010];
void init(int n){
  for(int i=0;i<=n;i++){
      par[i]=i;
      depth[i]=0;
  }
  rep(i,n+1){
      siz[i]=1;
  }
}
int root(int x){
  return par[x]==x?x: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);
  ll sx=siz[x];
  ll sy=siz[y];
  if(x==y)return;
  if(depth[x]<depth[y]){
      par[x]=y;
  }else{
      par[y]=x;
      if(depth[x]==depth[y])depth[x]++;
  }
  siz[root(x)]=sx+sy;
}

ll rui(ll a,ll b){
    ll res=1;
    ll x=a;
    while(b){
        if(b&1)res=res*x%mod;
        b/=2;
        x=x*x%mod;
    }
    return res;
}
vector<vector<pll> >G(MAX);
vector<ll>sz(MAX);
void dfs(ll i,ll p){
    ll res=1;
    for(auto e:G[i]){
        if(e.fi==p)continue;
        dfs(e.fi,i);
        res+=sz[e.fi];
    }
    sz[i]=res;
}
ll n;
ll DFS(ll i,ll p){
    ll res=0;
    for(auto e:G[i]){
        if(e.fi==p)continue;
        res=(res+DFS(e.fi,i))%mod;
        res=(res+e.se*sz[e.fi]%mod*(n-sz[e.fi])%mod)%mod;
    }
    return res;
}
signed main(){
    ll m,x;cin>>n>>m>>x;
    init(n);
    rep(i,m){
        ll a,b,z;cin>>a>>b>>z;
        a--;b--;
        if(same(a,b))continue;
        ll v=rui(x,z);
        G[a].pb(mp(b,v));
        G[b].pb(mp(a,v));
        unite(a,b);
    }
    dfs(0,-1);
    ll ans=DFS(0,-1);
    if(ans<0)ans+=mod;
    cout<<ans<<endl;
}
0