結果

問題 No.1207 グラフX
ユーザー 0w10w1
提出日時 2020-12-19 13:43:06
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 237 ms / 2,000 ms
コード長 1,686 bytes
コンパイル時間 2,397 ms
コンパイル使用メモリ 220,700 KB
実行使用メモリ 36,164 KB
最終ジャッジ日時 2024-09-21 10:14:10
合計ジャッジ時間 14,052 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 154 ms
18,808 KB
testcase_01 AC 153 ms
18,832 KB
testcase_02 AC 155 ms
18,920 KB
testcase_03 AC 149 ms
18,916 KB
testcase_04 AC 151 ms
19,064 KB
testcase_05 AC 211 ms
36,164 KB
testcase_06 AC 196 ms
35,908 KB
testcase_07 AC 191 ms
36,036 KB
testcase_08 AC 121 ms
13,196 KB
testcase_09 AC 125 ms
16,016 KB
testcase_10 AC 237 ms
27,464 KB
testcase_11 AC 227 ms
35,908 KB
testcase_12 AC 144 ms
13,992 KB
testcase_13 AC 75 ms
7,168 KB
testcase_14 AC 144 ms
18,156 KB
testcase_15 AC 128 ms
15,080 KB
testcase_16 AC 75 ms
7,680 KB
testcase_17 AC 107 ms
12,180 KB
testcase_18 AC 82 ms
12,020 KB
testcase_19 AC 108 ms
10,112 KB
testcase_20 AC 149 ms
18,620 KB
testcase_21 AC 14 ms
5,376 KB
testcase_22 AC 99 ms
12,360 KB
testcase_23 AC 120 ms
13,860 KB
testcase_24 AC 78 ms
11,136 KB
testcase_25 AC 151 ms
18,392 KB
testcase_26 AC 117 ms
14,616 KB
testcase_27 AC 142 ms
16,936 KB
testcase_28 AC 145 ms
15,988 KB
testcase_29 AC 127 ms
16,476 KB
testcase_30 AC 71 ms
8,964 KB
testcase_31 AC 68 ms
6,272 KB
testcase_32 AC 59 ms
9,032 KB
testcase_33 AC 64 ms
8,832 KB
testcase_34 AC 126 ms
14,748 KB
testcase_35 AC 14 ms
5,376 KB
testcase_36 AC 122 ms
15,576 KB
testcase_37 AC 115 ms
13,020 KB
testcase_38 AC 32 ms
5,888 KB
testcase_39 AC 66 ms
9,712 KB
testcase_40 AC 50 ms
5,376 KB
testcase_41 AC 99 ms
9,984 KB
testcase_42 AC 2 ms
5,376 KB
testcase_43 AC 2 ms
5,376 KB
testcase_44 AC 2 ms
5,376 KB
testcase_45 AC 157 ms
18,912 KB
testcase_46 AC 142 ms
18,932 KB
testcase_47 AC 146 ms
18,796 KB
testcase_48 AC 174 ms
18,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
  ios::sync_with_stdio(false);

  int N, M, X; { cin >> N >> M >> X; }

  vector<tuple<int, int, int>> edges(M); {
    for (int i = 0; i < M; ++i) {
      int X, Y, Z; { cin >> X >> Y >> Z; --X, --Y; }
      edges[i] = make_tuple(Z, X, Y);
    }
    sort(edges.begin(), edges.end());
  }

  const int D = 1e9 + 7;

  auto ipow = [D](int v, int p) {
    int r = 1;
    for (int i = p; i; i >>= 1) {
      if (i & 1) r = (int64_t) r * v % D;
      v = (int64_t) v * v % D;
    }
    return r;
  };

  int res = 0; {
    vector<vector<pair<int, int>>> g(N); {
      vector<int> fa(N); { iota(fa.begin(), fa.end(), 0); }
      function<int(int)> find = [&](int x) { return fa[x] == x ? x : fa[x] = find(fa[x]); };
      function<bool(int, int)> unite = [&](int x, int y) {
        int fx = find(x);
        int fy = find(y);
        if (fx == fy) return false;
        fa[fx] = fy;
        return true;
      };

      for (auto [w, u, v] : edges) {
        if (unite(u, v)) {
          g[u].emplace_back(w, v);
          g[v].emplace_back(w, u);
        }
      }
    }

    vector<int> sz(N); {
      function<int(int, int)> dfs = [&](int u, int fa) {
        sz[u] = 1;
        for (auto [w, v] : g[u]) if (v != fa) sz[u] += dfs(v, u);
        return sz[u];
      };
      dfs(0, -1);
    }

    function<void(int, int, int)> dfs = [&](int u, int fa, int sup) {
      for (auto [w, v] : g[u]) if (v != fa) {
        int n = (int64_t) (sup + sz[u] - sz[v]) * sz[v] % D;
        (res += (int64_t) n * ipow(X, w) % D) %= D;
        dfs(v, u, sup + sz[u] - sz[v]);
      }
    };

    dfs(0, -1, 0);
  }

  cout << res << endl;
}

0