結果

問題 No.1207 グラフX
ユーザー umezoumezo
提出日時 2022-08-12 17:51:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 757 ms / 2,000 ms
コード長 1,652 bytes
コンパイル時間 2,519 ms
コンパイル使用メモリ 218,928 KB
実行使用メモリ 79,924 KB
最終ジャッジ日時 2024-09-22 20:45:57
合計ジャッジ時間 30,235 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 728 ms
46,108 KB
testcase_01 AC 755 ms
46,264 KB
testcase_02 AC 727 ms
46,212 KB
testcase_03 AC 757 ms
46,144 KB
testcase_04 AC 741 ms
46,248 KB
testcase_05 AC 633 ms
79,704 KB
testcase_06 AC 640 ms
79,792 KB
testcase_07 AC 634 ms
79,924 KB
testcase_08 AC 437 ms
30,664 KB
testcase_09 AC 550 ms
37,272 KB
testcase_10 AC 617 ms
64,064 KB
testcase_11 AC 617 ms
79,808 KB
testcase_12 AC 476 ms
32,860 KB
testcase_13 AC 118 ms
14,048 KB
testcase_14 AC 702 ms
44,264 KB
testcase_15 AC 555 ms
36,092 KB
testcase_16 AC 153 ms
16,084 KB
testcase_17 AC 394 ms
28,716 KB
testcase_18 AC 372 ms
29,612 KB
testcase_19 AC 274 ms
21,428 KB
testcase_20 AC 715 ms
45,400 KB
testcase_21 AC 15 ms
8,268 KB
testcase_22 AC 378 ms
29,332 KB
testcase_23 AC 444 ms
33,044 KB
testcase_24 AC 310 ms
27,048 KB
testcase_25 AC 694 ms
44,920 KB
testcase_26 AC 502 ms
35,128 KB
testcase_27 AC 657 ms
40,672 KB
testcase_28 AC 565 ms
37,380 KB
testcase_29 AC 600 ms
40,404 KB
testcase_30 AC 225 ms
20,652 KB
testcase_31 AC 85 ms
11,872 KB
testcase_32 AC 224 ms
21,772 KB
testcase_33 AC 239 ms
21,240 KB
testcase_34 AC 541 ms
35,604 KB
testcase_35 AC 18 ms
8,616 KB
testcase_36 AC 539 ms
36,844 KB
testcase_37 AC 424 ms
30,588 KB
testcase_38 AC 77 ms
13,476 KB
testcase_39 AC 237 ms
22,760 KB
testcase_40 AC 47 ms
8,984 KB
testcase_41 AC 257 ms
21,864 KB
testcase_42 AC 4 ms
8,152 KB
testcase_43 AC 4 ms
8,020 KB
testcase_44 AC 4 ms
8,120 KB
testcase_45 AC 707 ms
46,224 KB
testcase_46 AC 709 ms
46,224 KB
testcase_47 AC 703 ms
46,228 KB
testcase_48 AC 704 ms
46,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define ALL(v) v.begin(), v.end()
typedef long long ll;

#include <bits/stdc++.h>
using namespace std;

vector<int> G[200200];
class Dis{
  public:
  vector<ll> rank,p,siz;
  
  Dis(int s){
    rank.resize(s,0);
    p.resize(s,0);
    siz.resize(s,1);
    rep(i,s) makeSet(i);
  }
  
  void makeSet(int x){
    p[x]=x;
    rank[x]=0;
  }
  
  bool same(int x,int y){
    return findSet(x)==findSet(y);
  }
  
  void unite(int x,int y){
    if(same(x,y)) return;
    link(findSet(x),findSet(y));
  }
  
  void link(int x,int y){
    if(rank[x]>rank[y]){
      p[y]=x;
      siz[x]+=siz[y];
    }
    else{
      p[x]=y;
      siz[y]+=siz[x];
      if(rank[x]==rank[y]) rank[y]++;
    }
  }
  
  int findSet(int x){
    if(x != p[x]) p[x]=findSet(p[x]);
    return p[x];
  }
};

const int MOD=1e9+7;
ll modpow(ll x,ll n){
  x%=MOD;
  ll ans=1;
  while(n){
    if(n&1) ans=ans*x%MOD;
    x=x*x%MOD;
    n/=2;
  }
  return ans;
}

int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);

  ll n,m,x;
  cin>>n>>m>>x;
  Dis ds=Dis(n);
  map<pair<int,int>,ll> M;
  rep(i,m){
    ll x,y,z;
    cin>>x>>y>>z;
    x--,y--;
    if(!ds.same(x,y)){
      G[x].push_back(y);
      G[y].push_back(x);
      M[{x,y}]=z;
      M[{y,x}]=z;
      ds.unite(x,y);
    }
  }
  
  ll ans=0;
  vector<ll> chi(n);
  auto dfs=[&](auto dfs,int v,int p)->void{
    ll tmp=0;
    for(auto nv:G[v]){
      if(nv==p) continue;
      dfs(dfs,nv,v);
      tmp+=chi[nv];
      ans=(ans+chi[nv]*(n-chi[nv])%MOD*modpow(x,M[{v,nv}])%MOD)%MOD;
    }
    chi[v]=tmp+1;
  };
  dfs(dfs,0,-1);
  cout<<ans<<endl;
  
  return 0;
}
0