結果

問題 No.1843 Tree ANDistance
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-05-21 23:30:50
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 530 ms / 2,000 ms
コード長 1,208 bytes
コンパイル時間 1,299 ms
コンパイル使用メモリ 118,160 KB
実行使用メモリ 10,412 KB
最終ジャッジ日時 2024-06-01 12:49:29
合計ジャッジ時間 11,513 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 523 ms
10,196 KB
testcase_01 AC 522 ms
10,184 KB
testcase_02 AC 530 ms
10,412 KB
testcase_03 AC 525 ms
10,284 KB
testcase_04 AC 523 ms
10,320 KB
testcase_05 AC 353 ms
10,020 KB
testcase_06 AC 362 ms
10,160 KB
testcase_07 AC 485 ms
9,984 KB
testcase_08 AC 505 ms
10,112 KB
testcase_09 AC 492 ms
9,896 KB
testcase_10 AC 474 ms
9,828 KB
testcase_11 AC 506 ms
10,148 KB
testcase_12 AC 312 ms
9,664 KB
testcase_13 AC 331 ms
9,492 KB
testcase_14 AC 15 ms
5,376 KB
testcase_15 AC 16 ms
5,376 KB
testcase_16 AC 8 ms
5,376 KB
testcase_17 AC 6 ms
5,376 KB
testcase_18 AC 4 ms
5,376 KB
testcase_19 AC 14 ms
5,376 KB
testcase_20 AC 7 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 126 ms
8,704 KB
testcase_29 AC 85 ms
6,944 KB
testcase_30 AC 78 ms
8,832 KB
testcase_31 AC 139 ms
9,344 KB
testcase_32 AC 130 ms
8,856 KB
testcase_33 AC 37 ms
5,504 KB
testcase_34 AC 92 ms
7,680 KB
testcase_35 AC 3 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cmath>
#include <map>
#include <set>
#include <iomanip>
#include <queue>
#include <algorithm>
#include <numeric>
#include <deque>
#include <complex>
#include <cassert>

using namespace std;
using ll = long long;

const ll modc = 1e9+7;

vector<bool> visit;
ll v;

void dfs(ll from, vector<vector<ll>> &E){
    ll cnt = 1;
    visit[from] = 1;
    v++;

    for (auto to : E[from]){
        if (visit[to]) continue;
        dfs(to, E);
    }
}

int main(){

    ll N, ans=0;
    cin >> N;
    visit.resize(N);
    vector<ll> A(N-1), B(N-1), C(N-1);
    for (int i=0; i<N-1; i++){
        cin >> A[i] >> B[i] >> C[i];
        A[i]--; B[i]--;
    }

    for (int i=0; i<30; i++){
        vector<vector<ll>> E(N);
        for (int j=0; j<N; j++) visit[j] = 0;
        for (int j=0; j<N-1; j++){
            if (C[j] & (1<<i)){
                E[A[j]].push_back(B[j]);
                E[B[j]].push_back(A[j]);
            }
        }
        for (int j=0; j<N; j++){
            v = 0;
            if (!visit[j]) dfs(j, E);
            ans += ((v * (v-1) / 2) * (1LL << i)) % modc;
            ans %= modc;
        }
    }
    cout << ans << endl;

    return 0;
}
0