結果
問題 | No.1207 グラフX |
ユーザー | 沙耶花 |
提出日時 | 2020-08-30 13:23:58 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 386 ms / 2,000 ms |
コード長 | 1,500 bytes |
コンパイル時間 | 2,929 ms |
コンパイル使用メモリ | 211,136 KB |
実行使用メモリ | 31,396 KB |
最終ジャッジ日時 | 2024-11-15 06:40:38 |
合計ジャッジ時間 | 17,744 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 328 ms
17,360 KB |
testcase_01 | AC | 324 ms
17,320 KB |
testcase_02 | AC | 322 ms
17,312 KB |
testcase_03 | AC | 314 ms
17,444 KB |
testcase_04 | AC | 325 ms
17,312 KB |
testcase_05 | AC | 376 ms
31,396 KB |
testcase_06 | AC | 386 ms
31,396 KB |
testcase_07 | AC | 381 ms
31,396 KB |
testcase_08 | AC | 281 ms
11,476 KB |
testcase_09 | AC | 286 ms
14,948 KB |
testcase_10 | AC | 377 ms
24,228 KB |
testcase_11 | AC | 380 ms
31,396 KB |
testcase_12 | AC | 271 ms
12,260 KB |
testcase_13 | AC | 172 ms
6,816 KB |
testcase_14 | AC | 315 ms
16,592 KB |
testcase_15 | AC | 294 ms
13,404 KB |
testcase_16 | AC | 163 ms
6,820 KB |
testcase_17 | AC | 222 ms
10,828 KB |
testcase_18 | AC | 174 ms
11,184 KB |
testcase_19 | AC | 239 ms
8,024 KB |
testcase_20 | AC | 324 ms
16,964 KB |
testcase_21 | AC | 32 ms
6,816 KB |
testcase_22 | AC | 217 ms
11,048 KB |
testcase_23 | AC | 238 ms
12,380 KB |
testcase_24 | AC | 155 ms
10,240 KB |
testcase_25 | AC | 317 ms
16,792 KB |
testcase_26 | AC | 258 ms
13,164 KB |
testcase_27 | AC | 299 ms
15,368 KB |
testcase_28 | AC | 292 ms
14,844 KB |
testcase_29 | AC | 281 ms
15,332 KB |
testcase_30 | AC | 155 ms
7,856 KB |
testcase_31 | AC | 151 ms
6,820 KB |
testcase_32 | AC | 124 ms
8,316 KB |
testcase_33 | AC | 135 ms
8,112 KB |
testcase_34 | AC | 278 ms
13,344 KB |
testcase_35 | AC | 32 ms
6,820 KB |
testcase_36 | AC | 270 ms
14,644 KB |
testcase_37 | AC | 244 ms
11,452 KB |
testcase_38 | AC | 63 ms
6,820 KB |
testcase_39 | AC | 139 ms
9,196 KB |
testcase_40 | AC | 127 ms
6,816 KB |
testcase_41 | AC | 216 ms
8,460 KB |
testcase_42 | AC | 2 ms
6,820 KB |
testcase_43 | AC | 2 ms
6,820 KB |
testcase_44 | AC | 2 ms
6,820 KB |
testcase_45 | AC | 299 ms
17,340 KB |
testcase_46 | AC | 293 ms
17,344 KB |
testcase_47 | AC | 295 ms
17,344 KB |
testcase_48 | AC | 299 ms
17,348 KB |
コンパイルメッセージ
main.cpp:60:9: warning: use of 'auto' in parameter declaration only available with '-std=c++20' or '-fconcepts' 60 | int dfs(auto &E,int now,int p){ | ^~~~
ソースコード
#include <bits/stdc++.h> using namespace std; #define modulo 1000000007 #define mod(mod_x) ((((long long)mod_x+modulo))%modulo) #define Inf 1000000000 struct unionfind{ vector<int> data; vector<int> size; unionfind(int n){ for(int i=0;i<n;i++){ data.push_back(i); size.push_back(1); } } int find(int x){ if(data[x]==x)return x; return data[x]=find(data[x]); } bool unite(int x,int y){ x=find(x);y=find(y); if(x==y)return false; if(size[x]>size[y])swap(x,y); data[x]=y; size[y]+=size[x]; return true; } bool check(int x,int y){ return (find(x)==find(y)); } int get_size(int x){ int X = find(x); return size[X]; } }; int beki(long long a,long long b,int M = modulo){ int x = 1; while(b!=0){ if(b&1){ x=((long long)x*a)%M; } a=((long long)a*a)%M; b>>=1; } return x; } int gyakugen(int a){ return beki(a,modulo-2); } int N,M,X; int ans = 0; int dfs(auto &E,int now,int p){ int ret = 0; for(int i=0;i<E[now].size();i++){ int to = E[now][i].first; int z = E[now][i].second; if(to==p)continue; int t = dfs(E,to,now); int Y = mod(t*(N-t)); ans = mod(ans + mod(beki(X,z)*Y)); ret += t; } return ret+1; } int main(){ cin>>N>>M>>X; vector<vector<pair<int,int>>> E(N,vector<pair<int,int>>()); unionfind uf(N); for(int i=0;i<M;i++){ int x,y,z; cin>>x>>y>>z; x--;y--; if(uf.unite(x,y)){ E[x].emplace_back(y,z); E[y].emplace_back(x,z); } } dfs(E,0,-1); cout<<ans<<endl; return 0; }