結果

問題 No.1843 Tree ANDistance
ユーザー ruthenruthen
提出日時 2022-02-18 22:22:46
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 393 ms / 2,000 ms
コード長 979 bytes
コンパイル時間 1,716 ms
コンパイル使用メモリ 176,224 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-29 09:14:19
合計ジャッジ時間 9,832 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 331 ms
5,248 KB
testcase_01 AC 331 ms
5,376 KB
testcase_02 AC 326 ms
5,376 KB
testcase_03 AC 325 ms
5,376 KB
testcase_04 AC 329 ms
5,376 KB
testcase_05 AC 319 ms
5,376 KB
testcase_06 AC 333 ms
5,376 KB
testcase_07 AC 314 ms
5,376 KB
testcase_08 AC 322 ms
5,376 KB
testcase_09 AC 308 ms
5,376 KB
testcase_10 AC 302 ms
5,376 KB
testcase_11 AC 328 ms
5,376 KB
testcase_12 AC 289 ms
5,376 KB
testcase_13 AC 307 ms
5,376 KB
testcase_14 AC 13 ms
5,376 KB
testcase_15 AC 14 ms
5,376 KB
testcase_16 AC 7 ms
5,376 KB
testcase_17 AC 6 ms
5,376 KB
testcase_18 AC 4 ms
5,376 KB
testcase_19 AC 15 ms
5,376 KB
testcase_20 AC 8 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 360 ms
5,376 KB
testcase_29 AC 245 ms
5,376 KB
testcase_30 AC 253 ms
5,376 KB
testcase_31 AC 393 ms
5,376 KB
testcase_32 AC 370 ms
5,376 KB
testcase_33 AC 128 ms
5,376 KB
testcase_34 AC 293 ms
5,376 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>
using namespace std;

#ifdef _RUTHEN
#include "debug.hpp"
#else
#define show(...) true
#endif

using ll = long long;
#define rep(i, n) for (int i = 0; i < (n); i++)
#define ALL(x) begin(x), end(x)
template <class T> using V = vector<T>;

#include <atcoder/dsu>
#include <atcoder/modint>
using namespace atcoder;
using mint = modint1000000007;

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    int N;
    cin >> N;
    V<int> u(N - 1), v(N - 1), c(N - 1);
    rep(i, N - 1) {
        cin >> u[i] >> v[i] >> c[i];
        u[i]--, v[i]--;
    }
    mint p2 = 1, ans = 0;
    rep(i, 32) {
        dsu uf(N);
        rep(j, N - 1) {
            if (c[j] >> i & 1) {
                uf.merge(u[j], v[j]);
            }
        }
        rep(j, N) {
            if (uf.leader(j) == j) {
                ans += p2 * uf.size(j) * (uf.size(j) - 1) / 2;
            }
        }
        p2 *= 2;
    }
    cout << ans.val() << '\n';
    return 0;
}
0