結果
問題 | No.1207 グラフX |
ユーザー | auaua |
提出日時 | 2020-08-30 14:53:59 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,978 bytes |
コンパイル時間 | 1,947 ms |
コンパイル使用メモリ | 174,340 KB |
実行使用メモリ | 16,544 KB |
最終ジャッジ日時 | 2024-11-15 08:00:45 |
合計ジャッジ時間 | 11,188 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | AC | 163 ms
11,904 KB |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | AC | 155 ms
12,552 KB |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | AC | 230 ms
14,580 KB |
testcase_20 | RE | - |
testcase_21 | AC | 33 ms
9,588 KB |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | WA | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | AC | 157 ms
14,260 KB |
testcase_31 | AC | 150 ms
11,008 KB |
testcase_32 | AC | 120 ms
14,580 KB |
testcase_33 | AC | 134 ms
14,576 KB |
testcase_34 | RE | - |
testcase_35 | AC | 35 ms
9,672 KB |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | AC | 69 ms
11,592 KB |
testcase_39 | AC | 135 ms
15,464 KB |
testcase_40 | AC | 128 ms
9,844 KB |
testcase_41 | AC | 207 ms
14,996 KB |
testcase_42 | AC | 6 ms
9,472 KB |
testcase_43 | AC | 6 ms
9,600 KB |
testcase_44 | AC | 5 ms
9,472 KB |
testcase_45 | RE | - |
testcase_46 | RE | - |
testcase_47 | RE | - |
testcase_48 | RE | - |
ソースコード
#include<bits/stdc++.h> using namespace std; #define int long long #define REP(i,m,n) for(int i=(m);i<(n);i++) #define rep(i,n) REP(i,0,n) #define pb push_back #define all(a) a.begin(),a.end() #define rall(c) (c).rbegin(),(c).rend() #define mp make_pair #define endl '\n' #define vec vector<ll> #define mat vector<vector<ll> > #define fi first #define se second typedef long long ll; typedef unsigned long long ull; typedef pair<ll,ll> pll; typedef long double ld; typedef complex<double> comp; const ll inf=1e9+7; const ll mod=1e9+7; const int MAX=200010; //Union-Find木 int siz[100010]; int par[100010]; int depth[100010]; void init(int n){ for(int i=0;i<=n;i++){ par[i]=i; depth[i]=0; } rep(i,n+1){ siz[i]=1; } } int root(int x){ return par[x]==x?x:par[x]=root(par[x]); } bool same(int x,int y){ return root(x)==root(y); } void unite(int x,int y){ x=root(x); y=root(y); ll sx=siz[x]; ll sy=siz[y]; if(x==y)return; if(depth[x]<depth[y]){ par[x]=y; }else{ par[y]=x; if(depth[x]==depth[y])depth[x]++; } siz[root(x)]=sx+sy; } ll rui(ll a,ll b){ ll res=1; ll x=a; while(b){ if(b&1)res=res*x%mod; b/=2; x=x*x%mod; } return res; } vector<vector<pll> >G(MAX); vector<ll>sz(MAX); void dfs(ll i,ll p){ ll res=1; for(auto e:G[i]){ if(e.fi==p)continue; dfs(e.fi,i); res+=sz[e.fi]; } sz[i]=res; } ll n; ll DFS(ll i,ll p){ ll res=0; for(auto e:G[i]){ if(e.fi==p)continue; res=(res+DFS(e.fi,i))%mod; res=(res+e.se*sz[e.fi]%mod*(n-sz[e.fi])%mod)%mod; } return res; } signed main(){ ll m,x;cin>>n>>m>>x; init(n); rep(i,m){ ll a,b,z;cin>>a>>b>>z; a--;b--; if(same(a,b))continue; ll v=rui(x,z); G[a].pb(mp(b,v)); G[b].pb(mp(a,v)); unite(a,b); } dfs(0,-1); ll ans=DFS(0,-1); if(ans<0)ans+=mod; cout<<ans<<endl; }