結果

問題 No.1843 Tree ANDistance
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-05-21 23:30:50
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 597 ms / 2,000 ms
コード長 1,208 bytes
コンパイル時間 1,348 ms
コンパイル使用メモリ 118,308 KB
実行使用メモリ 10,280 KB
最終ジャッジ日時 2024-12-21 19:47:38
合計ジャッジ時間 12,630 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 579 ms
10,068 KB
testcase_01 AC 569 ms
10,056 KB
testcase_02 AC 565 ms
10,280 KB
testcase_03 AC 577 ms
10,280 KB
testcase_04 AC 597 ms
10,188 KB
testcase_05 AC 381 ms
10,020 KB
testcase_06 AC 420 ms
10,156 KB
testcase_07 AC 564 ms
9,856 KB
testcase_08 AC 565 ms
10,024 KB
testcase_09 AC 562 ms
9,892 KB
testcase_10 AC 543 ms
9,696 KB
testcase_11 AC 574 ms
10,020 KB
testcase_12 AC 341 ms
9,540 KB
testcase_13 AC 353 ms
9,364 KB
testcase_14 AC 16 ms
5,248 KB
testcase_15 AC 17 ms
5,248 KB
testcase_16 AC 8 ms
5,248 KB
testcase_17 AC 7 ms
5,248 KB
testcase_18 AC 4 ms
5,248 KB
testcase_19 AC 15 ms
5,248 KB
testcase_20 AC 8 ms
5,248 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 2 ms
5,248 KB
testcase_28 AC 141 ms
8,704 KB
testcase_29 AC 96 ms
6,808 KB
testcase_30 AC 81 ms
8,960 KB
testcase_31 AC 149 ms
9,216 KB
testcase_32 AC 141 ms
8,724 KB
testcase_33 AC 40 ms
5,504 KB
testcase_34 AC 99 ms
7,680 KB
testcase_35 AC 2 ms
5,248 KB
testcase_36 AC 2 ms
5,248 KB
testcase_37 AC 2 ms
5,248 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