結果

問題 No.1207 グラフX
ユーザー kk
提出日時 2020-10-09 14:42:24
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 200 ms / 2,000 ms
コード長 2,021 bytes
コンパイル時間 2,237 ms
コンパイル使用メモリ 207,592 KB
実行使用メモリ 33,216 KB
最終ジャッジ日時 2024-07-20 06:48:38
合計ジャッジ時間 12,759 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 152 ms
19,568 KB
testcase_01 AC 182 ms
19,572 KB
testcase_02 AC 140 ms
19,724 KB
testcase_03 AC 144 ms
19,584 KB
testcase_04 AC 150 ms
19,696 KB
testcase_05 AC 200 ms
33,000 KB
testcase_06 AC 196 ms
33,136 KB
testcase_07 AC 199 ms
33,216 KB
testcase_08 AC 111 ms
15,040 KB
testcase_09 AC 117 ms
17,720 KB
testcase_10 AC 193 ms
27,508 KB
testcase_11 AC 198 ms
33,152 KB
testcase_12 AC 107 ms
15,700 KB
testcase_13 AC 62 ms
10,152 KB
testcase_14 AC 183 ms
19,100 KB
testcase_15 AC 120 ms
16,612 KB
testcase_16 AC 71 ms
10,512 KB
testcase_17 AC 92 ms
14,432 KB
testcase_18 AC 70 ms
14,508 KB
testcase_19 AC 85 ms
12,164 KB
testcase_20 AC 130 ms
19,444 KB
testcase_21 AC 13 ms
8,096 KB
testcase_22 AC 86 ms
14,536 KB
testcase_23 AC 93 ms
15,552 KB
testcase_24 AC 62 ms
13,840 KB
testcase_25 AC 129 ms
19,244 KB
testcase_26 AC 106 ms
16,288 KB
testcase_27 AC 133 ms
17,960 KB
testcase_28 AC 117 ms
17,916 KB
testcase_29 AC 117 ms
17,860 KB
testcase_30 AC 60 ms
11,920 KB
testcase_31 AC 54 ms
9,320 KB
testcase_32 AC 53 ms
12,192 KB
testcase_33 AC 57 ms
12,088 KB
testcase_34 AC 118 ms
16,488 KB
testcase_35 AC 17 ms
8,260 KB
testcase_36 AC 128 ms
17,608 KB
testcase_37 AC 110 ms
14,984 KB
testcase_38 AC 31 ms
9,800 KB
testcase_39 AC 102 ms
12,888 KB
testcase_40 AC 43 ms
8,336 KB
testcase_41 AC 77 ms
12,592 KB
testcase_42 AC 4 ms
8,040 KB
testcase_43 AC 5 ms
8,064 KB
testcase_44 AC 5 ms
7,996 KB
testcase_45 AC 145 ms
19,592 KB
testcase_46 AC 134 ms
19,540 KB
testcase_47 AC 128 ms
19,656 KB
testcase_48 AC 132 ms
19,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#define REP(i,n) for(int i=0; i<(int)(n); i++)
#define FOR(i,b,e) for (int i=(int)(b); i<(int)(e); i++)
#define ALL(x) (x).begin(), (x).end()

const double PI = acos(-1);

class UFT {
  int n;
  int cnt;           // number of connected components
  vector<int> par;
  vector<int> rank;
  vector<int> sz;    // size of each component
public:
  UFT(int n) : n(n), cnt(n), par(n), rank(n), sz(n) {
    for (int i = 0; i < n; i++) {
      par[i] = i;
      sz[i] = 1;
    }
  }
  
  int find(int x) {
    return par[x] == x ? x : par[x] = find(par[x]);
  }
  
  void unite(int x, int y) {
    x = find(x);
    y = find(y);
    if (x == y) return;
    
    --cnt;
    if (rank[x] < rank[y]) {
      par[x] = y;
      sz[y] += sz[x];
    } else {
      par[y] = x;
      sz[x] += sz[y];
      if (rank[x] == rank[y])
        ++rank[x];
    }
    
  }
  
  bool same(int x, int y) {
    return find(x) == find(y);
  }
  
  int compCnt() {
    return cnt;
  }
  
  int size(int x) {
    return sz[find(x)];
  }
};

long long modpow(long long x, long long p, long long mod) {
  long long ret = 1;
  while (p) {
    if (p & 1)
      ret = ret * x % mod;
    x = x * x % mod;
    p >>= 1;
  }
  return ret;
}

const long long MOD = 1e9 + 7;
int n, m;
vector<pair<int, long long> > edges[200000];
long long ret = 0;


int dfs(int v, int par = -1) {
  int c = 1;
  for (auto &[u, dist]: edges[v]) {
    if (u == par) continue;
    int ch = dfs(u, v);
    c += ch;
    ret += dist * ch % MOD * (n - ch) % MOD;
    ret %= MOD;
  }
  return c;
}

int main() {
  ios_base::sync_with_stdio(0);
  cin.tie(0);

  long long x;
  cin >> n >> m >> x;

  UFT tree(n);
  REP (i, m) {
    int u, v, z;
    cin >> u >> v >> z;
    --u, --v;
    if (tree.same(u, v))
      continue;
    else {
      tree.unite(u, v);
      long long dist = modpow(x, z, MOD);
      edges[u].emplace_back(v, dist);
      edges[v].emplace_back(u, dist);
    }
  }

  dfs(0);
  
  cout << ret << endl;
  
  return 0;
}
0