結果

問題 No.1843 Tree ANDistance
ユーザー chestnut_68chestnut_68
提出日時 2022-02-18 21:44:40
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 185 ms / 2,000 ms
コード長 1,646 bytes
コンパイル時間 3,931 ms
コンパイル使用メモリ 231,224 KB
実行使用メモリ 7,308 KB
最終ジャッジ日時 2024-06-29 08:36:07
合計ジャッジ時間 8,404 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 185 ms
7,304 KB
testcase_01 AC 184 ms
7,176 KB
testcase_02 AC 175 ms
7,176 KB
testcase_03 AC 176 ms
7,180 KB
testcase_04 AC 182 ms
7,300 KB
testcase_05 AC 167 ms
7,308 KB
testcase_06 AC 184 ms
7,176 KB
testcase_07 AC 172 ms
7,052 KB
testcase_08 AC 177 ms
7,040 KB
testcase_09 AC 167 ms
7,168 KB
testcase_10 AC 163 ms
6,912 KB
testcase_11 AC 177 ms
7,144 KB
testcase_12 AC 150 ms
6,912 KB
testcase_13 AC 171 ms
6,788 KB
testcase_14 AC 7 ms
5,376 KB
testcase_15 AC 7 ms
5,376 KB
testcase_16 AC 4 ms
5,376 KB
testcase_17 AC 4 ms
5,376 KB
testcase_18 AC 3 ms
5,376 KB
testcase_19 AC 8 ms
5,376 KB
testcase_20 AC 5 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 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 88 ms
6,400 KB
testcase_29 AC 60 ms
5,436 KB
testcase_30 AC 59 ms
5,504 KB
testcase_31 AC 96 ms
6,564 KB
testcase_32 AC 92 ms
6,272 KB
testcase_33 AC 30 ms
5,376 KB
testcase_34 AC 71 ms
5,760 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
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using mint = modint1000000007;
using namespace std;
#define rep1(a)          for(int64_t i = 0; i < a; i++)
#define rep2(i, a)       for(int64_t i = 0; i < a; i++)
#define rep3(i, a, b)    for(int64_t i = a; i < b; i++)
#define rep4(i, a, b, c) for(int i = a; i < b; i += c)
#define overload4(a, b, c, d, e, ...) e
#define rep(...) overload4(__VA_ARGS__, rep4, rep3, rep2, rep1)(__VA_ARGS__)
const int64_t MOD=998244353;
const long long INF = 1LL<<60;

struct UnionFind {
  vector<int> par,siz; 
  UnionFind(int N):par(N),siz(N,1){
    for(int i=0;i<N;i++)par[i]=i;
  }
  void init(int N){
    par.resize(N);
    siz.assign(N,1);
    for(int i=0;i<N;++i)par[i]=i;
  }
  int root(int x){
    if(par[x]==x)return x;
    return par[x]=root(par[x]);
  }
  void unite(int x,int y){
    int rx=root(x);
    int ry=root(y);
    if(rx==ry)return;
    if(siz[rx]<siz[ry])swap(rx, ry);
    siz[rx]+=siz[ry];
    par[ry]=rx;
  }
  bool same(int x,int y){
    int rx=root(x);
    int ry=root(y);
    return rx==ry;
  }
  int size(int x){
    return siz[root(x)];
  }
};
int main(){
  int N;cin>>N;
  vector<int64_t> A(N),B(N),C(N);
  rep(i,N){
    cin>>A[i]>>B[i]>>C[i];
    A[i]--,B[i]--;
  }
  UnionFind T(N);
  mint ans=0,d=1;
  int64_t D=1;
  rep(i,31){
    //T.init(N);
    UnionFind T(N);
    rep(j,N){
      if(C[j]&D){
        T.unite(A[j],B[j]);
        //cout<<(1<<j)<<endl;
      }
    }
    rep(j,N){
      if(T.root(j)==j){
        int64_t s=T.size(j);
        ans+=d*(s*(s-1)/2);
        //cout<<ans.val()<<endl;
      }
    }
    d*=2;
    D*=2;
  }
  cout<<ans.val();
}
0