結果
問題 | No.1207 グラフX |
ユーザー | carrot46 |
提出日時 | 2020-08-30 13:19:44 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 379 ms / 2,000 ms |
コード長 | 3,843 bytes |
コンパイル時間 | 2,078 ms |
コンパイル使用メモリ | 178,156 KB |
実行使用メモリ | 37,660 KB |
最終ジャッジ日時 | 2024-11-15 06:36:48 |
合計ジャッジ時間 | 15,843 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 308 ms
20,452 KB |
testcase_01 | AC | 309 ms
20,452 KB |
testcase_02 | AC | 305 ms
20,468 KB |
testcase_03 | AC | 304 ms
20,452 KB |
testcase_04 | AC | 312 ms
20,448 KB |
testcase_05 | AC | 373 ms
37,544 KB |
testcase_06 | AC | 370 ms
37,548 KB |
testcase_07 | AC | 379 ms
37,544 KB |
testcase_08 | AC | 284 ms
13,332 KB |
testcase_09 | AC | 276 ms
16,300 KB |
testcase_10 | AC | 363 ms
29,072 KB |
testcase_11 | AC | 367 ms
37,660 KB |
testcase_12 | AC | 266 ms
14,396 KB |
testcase_13 | AC | 171 ms
6,820 KB |
testcase_14 | AC | 304 ms
19,724 KB |
testcase_15 | AC | 279 ms
15,724 KB |
testcase_16 | AC | 162 ms
6,820 KB |
testcase_17 | AC | 217 ms
12,544 KB |
testcase_18 | AC | 172 ms
12,992 KB |
testcase_19 | AC | 236 ms
9,216 KB |
testcase_20 | AC | 304 ms
20,076 KB |
testcase_21 | AC | 31 ms
6,820 KB |
testcase_22 | AC | 217 ms
12,820 KB |
testcase_23 | AC | 229 ms
14,436 KB |
testcase_24 | AC | 150 ms
11,984 KB |
testcase_25 | AC | 301 ms
20,000 KB |
testcase_26 | AC | 246 ms
15,252 KB |
testcase_27 | AC | 292 ms
17,908 KB |
testcase_28 | AC | 283 ms
16,368 KB |
testcase_29 | AC | 272 ms
17,744 KB |
testcase_30 | AC | 153 ms
8,832 KB |
testcase_31 | AC | 151 ms
6,820 KB |
testcase_32 | AC | 126 ms
9,344 KB |
testcase_33 | AC | 136 ms
9,088 KB |
testcase_34 | AC | 274 ms
15,564 KB |
testcase_35 | AC | 32 ms
6,816 KB |
testcase_36 | AC | 265 ms
16,200 KB |
testcase_37 | AC | 243 ms
13,468 KB |
testcase_38 | AC | 64 ms
6,816 KB |
testcase_39 | AC | 139 ms
9,752 KB |
testcase_40 | AC | 127 ms
6,816 KB |
testcase_41 | AC | 213 ms
9,344 KB |
testcase_42 | AC | 2 ms
6,816 KB |
testcase_43 | AC | 2 ms
6,820 KB |
testcase_44 | AC | 2 ms
6,816 KB |
testcase_45 | AC | 283 ms
20,440 KB |
testcase_46 | AC | 282 ms
20,440 KB |
testcase_47 | AC | 282 ms
20,440 KB |
testcase_48 | AC | 279 ms
20,436 KB |
ソースコード
#include <bits/stdc++.h> //#include <chrono> //#pragma GCC optimize("Ofast") using namespace std; #define reps(i,s,n) for(int i = s; i < n; i++) #define rep(i,n) reps(i,0,n) #define Rreps(i,n,e) for(int i = n - 1; i >= e; --i) #define Rrep(i,n) Rreps(i,n,0) #define ALL(a) a.begin(), a.end() #define fi first #define se second typedef long long ll; typedef vector<ll> vec; typedef vector<vec> mat; ll N,M,H,W,Q,K,A,B; string S; typedef pair<ll, ll> P; const ll INF = (1LL<<58); template <unsigned long long mod > class modint{ public: ll x; constexpr modint(){x = 0;} constexpr modint(ll _x) : x((_x < 0 ? ((_x += (LLONG_MAX / mod) * mod) < 0 ? _x + (LLONG_MAX / mod) * mod : _x) : _x)%mod){} constexpr modint operator-(){ return x == 0 ? 0 : mod - x; } constexpr modint& operator+=(const modint& a){ if((x += a.x) >= mod) x -= mod; return *this; } constexpr modint operator+(const modint& a) const{ return modint(*this) += a; } constexpr modint& operator-=(const modint& a){ if((x -= a.x) < 0) x += mod; return *this; } constexpr modint operator-(const modint& a) const{ return modint(*this) -= a; } constexpr modint& operator*=(const modint& a){ (x *= a.x)%=mod; return *this; } constexpr modint operator*(const modint& a) const{ return modint(*this) *= a; } constexpr modint pow(unsigned long long pw) const{ modint res(1), comp(*this); while(pw){ if(pw&1) res *= comp; comp *= comp; pw >>= 1; } return res; } //以下、modが素数のときのみ constexpr modint inv() const{ return modint(*this).pow(mod - 2); } constexpr modint& operator/=(const modint &a){ (x *= a.inv().x)%=mod; return *this; } constexpr modint operator/(const modint &a) const{ return modint(*this) /= a; } }; #define mod1 998244353 #define mod2 1000000007 using mint = modint<mod2>; ostream& operator<<(ostream& os, const mint& a){ os << a.x; return os; } using vm = vector<mint>; struct edge{ int to, cost; edge(){} edge(int a, int c){ to = a; cost = c; } }; using ve = vector<edge>; void dfs(int v, mint &ans, vector<ve> &G, vec &size){ size[v] = 1; for(edge e : G[v]){ if(size[e.to] == -1){ dfs(e.to, ans, G, size); ans += mint(K).pow(e.cost) * size[e.to] * (N - size[e.to]); size[v] += size[e.to]; } } } int main() { class union_find{ vector<long> parent, tree_size; public: union_find(unsigned long _n) : parent(_n), tree_size(_n, 1){ for(unsigned long i = 0; i < _n; ++i)parent[i] = i; } ll find(ll x){ while(parent[x] != x)x = parent[x] = parent[parent[x]]; return x; } bool merge(ll a, ll b){ a = find(a); b = find(b); if(a==b) return false; if(tree_size[a] < tree_size[b])swap(a, b); tree_size[a] += tree_size[b]; parent[b] = a; return true; } bool same(ll a, ll b){ a = find(a); b = find(b); return a == b; } }; //uf.mergeのように使う //ufはMAX_N+1でとるか、代入時に0-indexedにする cin>>N>>M>>K; union_find uf(N + 10); vector<ve> G(N, ve(0)); rep(i, M){ int x, y, z; cin>>x>>y>>z; --x; --y; if(uf.merge(x, y)){ G[x].emplace_back(y, z); G[y].emplace_back(x, z); } } mint ans(0); vec size(N, -1); dfs(0, ans, G, size); cout<<ans<<endl; }