結果
問題 | No.1843 Tree ANDistance |
ユーザー | otoshigo |
提出日時 | 2022-02-18 21:45:03 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 351 ms / 2,000 ms |
コード長 | 1,982 bytes |
コンパイル時間 | 1,953 ms |
コンパイル使用メモリ | 210,968 KB |
実行使用メモリ | 6,428 KB |
最終ジャッジ日時 | 2024-06-29 08:36:23 |
合計ジャッジ時間 | 9,382 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 294 ms
6,424 KB |
testcase_01 | AC | 291 ms
6,424 KB |
testcase_02 | AC | 285 ms
6,428 KB |
testcase_03 | AC | 290 ms
6,300 KB |
testcase_04 | AC | 295 ms
6,300 KB |
testcase_05 | AC | 274 ms
6,424 KB |
testcase_06 | AC | 289 ms
6,428 KB |
testcase_07 | AC | 275 ms
6,272 KB |
testcase_08 | AC | 297 ms
6,232 KB |
testcase_09 | AC | 276 ms
6,272 KB |
testcase_10 | AC | 271 ms
6,016 KB |
testcase_11 | AC | 288 ms
6,408 KB |
testcase_12 | AC | 250 ms
6,144 KB |
testcase_13 | AC | 273 ms
6,144 KB |
testcase_14 | AC | 11 ms
5,376 KB |
testcase_15 | AC | 11 ms
5,376 KB |
testcase_16 | AC | 6 ms
5,376 KB |
testcase_17 | AC | 5 ms
5,376 KB |
testcase_18 | AC | 4 ms
5,376 KB |
testcase_19 | AC | 13 ms
5,376 KB |
testcase_20 | AC | 7 ms
5,376 KB |
testcase_21 | AC | 1 ms
5,376 KB |
testcase_22 | AC | 2 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 | 327 ms
5,772 KB |
testcase_29 | AC | 228 ms
5,376 KB |
testcase_30 | AC | 223 ms
5,376 KB |
testcase_31 | AC | 351 ms
5,812 KB |
testcase_32 | AC | 328 ms
5,760 KB |
testcase_33 | AC | 112 ms
5,376 KB |
testcase_34 | AC | 259 ms
5,376 KB |
testcase_35 | AC | 1 ms
5,376 KB |
testcase_36 | AC | 2 ms
5,376 KB |
testcase_37 | AC | 1 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> #include <atcoder/modint> using namespace std; using namespace atcoder; using ll = long long; using mint = modint1000000007; #define rep(i,n) for (int i = 0; i < n; i++) #define rrep(i,n) for (int i = n-1; i >= 0; i--) #define rep2(i,a,b) for (int i = a; i < b; i++) #define rrep2(i,a,b) for (int i = a-1; i >= b; i--) #define rep3(i,a,b,c) for (int i = a; i < b; i+=c) #define rrep3(i,a,b,c) for (int i = a-1; i >= b; i-=c) #define all(v) v.begin(),v.end() #define rall(v) v.rbegin(),v.rend() template<class T> bool chmax(T &a, T b){if (a < b){a = b;return true;} else return false;} template<class T> bool chmin(T &a, T b){if (a > b){a = b;return true;} else return false;} template<class T> T pow(T x, ll y){if (y == 0) return 1.0;T p = pow(x,y/2);if (y%2 == 0) return p*p;else return p*p*x;} struct UnionFind { vector<int> par, siz; UnionFind(int n) : par(n,-1), siz(n,1) {} int find(int x){ if (par[x] == -1) return x; else{ par[x] = find(par[x]); return par[x]; } } bool same(int x, int y){ return find(x) == find(y); } int size(int x){ return siz[find(x)]; } void unite(int x, int y){ x = find(x); y = find(y); if (x == y) return; if (siz[x] < siz[y]) swap(x,y); siz[x] += siz[y]; par[y] = x; } }; int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int n; cin >> n; vector<ll> A(n-1), B(n-1), C(n-1); rep(i,n-1){ cin >> A[i] >> B[i] >> C[i]; --A[i]; --B[i]; } mint ans = 0; rep(i,30){ UnionFind uni(n); rep(j,n-1){ if (C[j]>>i&1) uni.unite(A[j],B[j]); } vector<bool> flag(n); rep(j,n){ if (flag[uni.find(j)]) continue; flag[uni.find(j)] = true; ll l = uni.size(j); ans += mint(2).pow(i)*l*(l-1)/2; } } cout << ans.val() << endl; }