結果
問題 | No.1207 グラフX |
ユーザー | siman |
提出日時 | 2023-03-15 21:28:30 |
言語 | C++17(clang) (17.0.6 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 323 ms / 2,000 ms |
コード長 | 2,591 bytes |
コンパイル時間 | 2,172 ms |
コンパイル使用メモリ | 144,148 KB |
実行使用メモリ | 37,668 KB |
最終ジャッジ日時 | 2024-09-18 08:54:47 |
合計ジャッジ時間 | 16,504 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 272 ms
24,716 KB |
testcase_01 | AC | 277 ms
24,832 KB |
testcase_02 | AC | 290 ms
24,720 KB |
testcase_03 | AC | 307 ms
24,712 KB |
testcase_04 | AC | 281 ms
24,584 KB |
testcase_05 | AC | 323 ms
37,668 KB |
testcase_06 | AC | 322 ms
37,420 KB |
testcase_07 | AC | 317 ms
37,544 KB |
testcase_08 | AC | 241 ms
18,984 KB |
testcase_09 | AC | 240 ms
22,824 KB |
testcase_10 | AC | 307 ms
31,912 KB |
testcase_11 | AC | 300 ms
37,548 KB |
testcase_12 | AC | 230 ms
22,180 KB |
testcase_13 | AC | 165 ms
13,096 KB |
testcase_14 | AC | 259 ms
24,232 KB |
testcase_15 | AC | 237 ms
22,828 KB |
testcase_16 | AC | 156 ms
13,864 KB |
testcase_17 | AC | 184 ms
18,092 KB |
testcase_18 | AC | 147 ms
17,572 KB |
testcase_19 | AC | 213 ms
17,064 KB |
testcase_20 | AC | 269 ms
24,508 KB |
testcase_21 | AC | 32 ms
9,768 KB |
testcase_22 | AC | 185 ms
17,960 KB |
testcase_23 | AC | 198 ms
21,676 KB |
testcase_24 | AC | 135 ms
16,680 KB |
testcase_25 | AC | 266 ms
24,484 KB |
testcase_26 | AC | 224 ms
22,308 KB |
testcase_27 | AC | 265 ms
23,332 KB |
testcase_28 | AC | 242 ms
22,892 KB |
testcase_29 | AC | 239 ms
23,080 KB |
testcase_30 | AC | 136 ms
15,780 KB |
testcase_31 | AC | 150 ms
12,968 KB |
testcase_32 | AC | 109 ms
15,532 KB |
testcase_33 | AC | 123 ms
15,656 KB |
testcase_34 | AC | 232 ms
22,568 KB |
testcase_35 | AC | 35 ms
10,024 KB |
testcase_36 | AC | 228 ms
22,696 KB |
testcase_37 | AC | 203 ms
18,800 KB |
testcase_38 | AC | 61 ms
11,176 KB |
testcase_39 | AC | 121 ms
15,788 KB |
testcase_40 | AC | 128 ms
12,972 KB |
testcase_41 | AC | 189 ms
16,628 KB |
testcase_42 | AC | 4 ms
8,960 KB |
testcase_43 | AC | 3 ms
8,960 KB |
testcase_44 | AC | 4 ms
8,868 KB |
testcase_45 | AC | 253 ms
24,972 KB |
testcase_46 | AC | 243 ms
24,744 KB |
testcase_47 | AC | 249 ms
24,996 KB |
testcase_48 | AC | 253 ms
24,872 KB |
ソースコード
#include <cassert> #include <cmath> #include <algorithm> #include <iostream> #include <iomanip> #include <climits> #include <map> #include <queue> #include <set> #include <cstring> #include <vector> using namespace std; typedef long long ll; const ll MOD = 1000000007; ll mod_pow(ll x, ll n, ll mod = MOD) { ll res = 1; while (n > 0) { if (n & 1) { res = res * x % mod; } x = x * x % mod; n >>= 1; } return res; } class UnionFind { public: vector<int> _parent; vector<int> _rank; vector<int> _size; UnionFind(int n) { for (int i = 0; i < n; ++i) { _parent.push_back(i); _rank.push_back(0); _size.push_back(1); } } int find(int x) { if (_parent[x] == x) { return x; } else { return _parent[x] = find(_parent[x]); } } void unite(int x, int y) { x = find(x); y = find(y); if (x == y) return; if (_rank[x] < _rank[y]) { _parent[x] = y; _size[y] += _size[x]; } else { _parent[y] = x; _size[x] += _size[y]; if (_rank[x] == _rank[y]) ++_rank[x]; } } bool same(int x, int y) { return find(x) == find(y); } int size(int x) { return _size[find(x)]; } }; struct Edge { int x; int y; ll z; Edge(int x = -1, int y = -1, ll z = -1) { this->x = x; this->y = y; this->z = z; } bool operator>(const Edge &e) const { return z > e.z; } }; const int MAX_N = 200020; vector<int> G[MAX_N]; int counter[MAX_N]; int dfs(int v, int parent = -1) { int cnt = 1; for (int u : G[v]) { if (u == parent) continue; cnt += dfs(u, v); } counter[v] = cnt; return cnt; } int main() { memset(counter, 0, sizeof(counter)); ll N, M, X; cin >> N >> M >> X; priority_queue <Edge, vector<Edge>, greater<Edge>> pque; for (int i = 0; i < M; ++i) { int x, y, z; cin >> x >> y >> z; pque.push(Edge(x, y, z)); } UnionFind uf(N + 1); vector<Edge> edges; while (not pque.empty()) { Edge e = pque.top(); pque.pop(); if (uf.same(e.x, e.y)) continue; uf.unite(e.x, e.y); edges.push_back(e); G[e.x].push_back(e.y); G[e.y].push_back(e.x); } dfs(1); ll ans = 0; for (Edge &e : edges) { if (counter[e.x] < counter[e.y]) { ll a = counter[e.x]; ll b = N - a; ll c = a * b % MOD; ans += c * mod_pow(X, e.z) % MOD; } else { ll a = counter[e.y]; ll b = N - a; ll c = a * b % MOD; ans += c * mod_pow(X, e.z) % MOD; } ans %= MOD; } cout << ans << endl; return 0; }