結果
問題 | No.1843 Tree ANDistance |
ユーザー | bekzhan29 |
提出日時 | 2022-02-21 21:03:40 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 421 ms / 2,000 ms |
コード長 | 1,384 bytes |
コンパイル時間 | 2,029 ms |
コンパイル使用メモリ | 201,068 KB |
実行使用メモリ | 50,560 KB |
最終ジャッジ日時 | 2024-06-30 00:55:45 |
合計ジャッジ時間 | 10,344 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 389 ms
50,432 KB |
testcase_01 | AC | 388 ms
50,560 KB |
testcase_02 | AC | 414 ms
50,560 KB |
testcase_03 | AC | 400 ms
50,560 KB |
testcase_04 | AC | 421 ms
50,432 KB |
testcase_05 | AC | 326 ms
50,432 KB |
testcase_06 | AC | 353 ms
50,560 KB |
testcase_07 | AC | 359 ms
48,128 KB |
testcase_08 | AC | 375 ms
49,152 KB |
testcase_09 | AC | 353 ms
48,128 KB |
testcase_10 | AC | 349 ms
47,104 KB |
testcase_11 | AC | 364 ms
50,176 KB |
testcase_12 | AC | 303 ms
46,464 KB |
testcase_13 | AC | 310 ms
46,720 KB |
testcase_14 | AC | 6 ms
5,376 KB |
testcase_15 | AC | 6 ms
5,376 KB |
testcase_16 | AC | 3 ms
5,376 KB |
testcase_17 | AC | 3 ms
5,376 KB |
testcase_18 | AC | 3 ms
5,376 KB |
testcase_19 | AC | 6 ms
5,760 KB |
testcase_20 | AC | 3 ms
5,376 KB |
testcase_21 | AC | 1 ms
5,376 KB |
testcase_22 | AC | 1 ms
5,376 KB |
testcase_23 | AC | 1 ms
5,376 KB |
testcase_24 | AC | 2 ms
5,376 KB |
testcase_25 | AC | 2 ms
5,376 KB |
testcase_26 | AC | 2 ms
5,376 KB |
testcase_27 | AC | 2 ms
5,376 KB |
testcase_28 | AC | 77 ms
39,936 KB |
testcase_29 | AC | 49 ms
28,160 KB |
testcase_30 | AC | 45 ms
28,544 KB |
testcase_31 | AC | 83 ms
43,264 KB |
testcase_32 | AC | 78 ms
41,088 KB |
testcase_33 | AC | 22 ms
16,128 KB |
testcase_34 | AC | 62 ms
33,024 KB |
testcase_35 | AC | 2 ms
5,376 KB |
testcase_36 | AC | 2 ms
5,376 KB |
testcase_37 | AC | 2 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> #include <iostream> #include <iomanip> #include <fstream> #include <algorithm> #include <vector> #include <map> #include <unordered_map> #include <set> #include <queue> #include <stack> #include <chrono> #include <random> using namespace std; #define pb push_back #define mp make_pair #define INF ll(1e18) #define mod 998244353 #define mod2 1000000007 #define eps 1e-9 #define abs(x) ((x)>=0?(x):-(x)) #define y1 solai #define fi first #define se second typedef long long ll; typedef long double ld; typedef pair<ll,ll> pll; typedef pair<double,double> pdd; const ll N=200100; ll n,a,b,c,p[30][N],r[30][N],ans; ll fin(ll a, ll t) { if(p[t][a]==a) return a; return p[t][a]=fin(p[t][a],t); } void uni(ll a, ll b, ll t) { a=fin(a,t),b=fin(b,t); if(a==b) return; if(r[t][a]>r[t][b]) r[t][a]+=r[t][b],p[t][b]=a; else r[t][b]+=r[t][a],p[t][a]=b; } int main() { ios_base::sync_with_stdio(0); cin.tie(0); cin>>n; for(ll i=1;i<=n;i++) for(ll j=0;j<30;j++) p[j][i]=i,r[j][i]=1; for(ll i=1;i<n;i++) { cin>>a>>b>>c; for(ll j=0;j<30;j++) if((c>>j)&1) uni(a,b,j); } for(ll i=1;i<=n;i++) for(ll j=0;j<30;j++) if(fin(i,j)==i) ans+=r[j][i]*(r[j][i]-1)/2%mod2*(1<<j),ans%=mod2; cout<<ans; } /* 10 4 10 720486811 3 6 815722764 3 4 983953993 8 10 211236348 3 5 349109700 5 9 338069808 6 7 510511646 1 5 367286770 2 6 831398479 */