結果

問題 No.1843 Tree ANDistance
ユーザー 👑 potato167potato167
提出日時 2021-12-09 01:11:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 154 ms / 2,000 ms
コード長 1,527 bytes
コンパイル時間 2,158 ms
コンパイル使用メモリ 204,356 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-16 12:03:51
合計ジャッジ時間 8,133 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 150 ms
6,812 KB
testcase_01 AC 152 ms
6,940 KB
testcase_02 AC 148 ms
6,944 KB
testcase_03 AC 145 ms
6,940 KB
testcase_04 AC 149 ms
6,940 KB
testcase_05 AC 141 ms
6,940 KB
testcase_06 AC 154 ms
6,940 KB
testcase_07 AC 144 ms
6,940 KB
testcase_08 AC 153 ms
6,944 KB
testcase_09 AC 143 ms
6,940 KB
testcase_10 AC 135 ms
6,944 KB
testcase_11 AC 153 ms
6,940 KB
testcase_12 AC 129 ms
6,940 KB
testcase_13 AC 149 ms
6,940 KB
testcase_14 AC 7 ms
6,944 KB
testcase_15 AC 7 ms
6,940 KB
testcase_16 AC 4 ms
6,940 KB
testcase_17 AC 4 ms
6,944 KB
testcase_18 AC 3 ms
6,944 KB
testcase_19 AC 7 ms
6,940 KB
testcase_20 AC 5 ms
6,940 KB
testcase_21 AC 1 ms
6,940 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 1 ms
6,944 KB
testcase_28 AC 68 ms
6,940 KB
testcase_29 AC 45 ms
6,940 KB
testcase_30 AC 45 ms
6,940 KB
testcase_31 AC 71 ms
6,940 KB
testcase_32 AC 66 ms
6,940 KB
testcase_33 AC 23 ms
6,940 KB
testcase_34 AC 53 ms
6,940 KB
testcase_35 AC 2 ms
6,944 KB
testcase_36 AC 1 ms
6,940 KB
testcase_37 AC 1 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using std::cout;
using std::cin;
using std::endl;
using ll=long long;
const ll mod=1e9+7;
#define rep(i,a) for (int i=0;i<a;i++)


namespace po167{
struct UFtree
{
	std::vector<int> wei;
	int component;
	UFtree(int n):par(n),wei(n),component(n){
		for(int i=0;i<n;i++){
			wei[i]=1,par[i]=i;
		}
	}
	void intialize(){
		for(int i=0;i<(int) par.size();i++){
			wei[i]=1,par[i]=i;
		}
		component=(int)par.size();
	}
	//根っこを返す
	int root(int a){
		if(a==par[a]) return a;
		return par[a]=root(par[a]);
	}
	//trueなら1,falseなら0
	int same(int a,int b){
		if(root(a)==root(b)) return 1;
		else return 0;
	}
	//a,bが違う根っこの元なら結合する,結合したらtrueを返す
	bool unite(int a,int b){
		a=root(a),b=root(b);
		if(a==b) return false;
		if(wei[a]<wei[b]) std::swap(a,b);
		par[b]=a;
		wei[a]+=wei[b];
		component--;
		return true;
	}
	private:
	std::vector<int> par;
};
}
using po167::UFtree;

int main() {
	
	int N;
    cin>>N;
    vector<int> A(N-1),B(N-1),C(N-1);
    rep(i,N-1){
        cin>>A[i]>>B[i]>>C[i];
        A[i]--,B[i]--;
    }
    ll ans=0;
    UFtree T(N);
    rep(i,32){
        ll tmp=0;
        T.intialize();
        rep(j,N-1){
            if(C[j]&(1<<i)) T.unite(A[j],B[j]);
        }
        rep(i,N){
            if(T.root(i)==i){
                tmp+=((ll)(T.wei[i])*(ll)(T.wei[i]-1))/2;
            }
        }
        tmp%=mod;
        tmp*=(1ll<<i);
        ans+=tmp%mod;
    }
    cout<<(ans%mod+mod)%mod<<"\n";
}

0