結果

問題 No.1843 Tree ANDistance
ユーザー 遭難者遭難者
提出日時 2024-05-19 12:12:38
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 310 ms / 2,000 ms
コード長 2,839 bytes
コンパイル時間 6,079 ms
コンパイル使用メモリ 317,872 KB
実行使用メモリ 10,320 KB
最終ジャッジ日時 2024-05-19 12:12:51
合計ジャッジ時間 12,779 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 253 ms
10,180 KB
testcase_01 AC 253 ms
10,320 KB
testcase_02 AC 246 ms
10,160 KB
testcase_03 AC 247 ms
10,152 KB
testcase_04 AC 257 ms
10,168 KB
testcase_05 AC 294 ms
10,116 KB
testcase_06 AC 310 ms
10,244 KB
testcase_07 AC 240 ms
9,776 KB
testcase_08 AC 247 ms
10,068 KB
testcase_09 AC 233 ms
9,736 KB
testcase_10 AC 229 ms
9,668 KB
testcase_11 AC 251 ms
10,068 KB
testcase_12 AC 243 ms
9,680 KB
testcase_13 AC 293 ms
9,720 KB
testcase_14 AC 10 ms
6,940 KB
testcase_15 AC 10 ms
6,944 KB
testcase_16 AC 5 ms
6,940 KB
testcase_17 AC 5 ms
6,940 KB
testcase_18 AC 3 ms
6,940 KB
testcase_19 AC 10 ms
6,944 KB
testcase_20 AC 6 ms
6,940 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 2 ms
6,944 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 47 ms
9,096 KB
testcase_29 AC 32 ms
7,196 KB
testcase_30 AC 18 ms
6,944 KB
testcase_31 AC 50 ms
9,572 KB
testcase_32 AC 48 ms
9,288 KB
testcase_33 AC 9 ms
6,940 KB
testcase_34 AC 41 ms
8,112 KB
testcase_35 AC 2 ms
6,940 KB
testcase_36 AC 2 ms
6,944 KB
testcase_37 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#if __has_include(<atcoder/all>)
#include <atcoder/all>
using mint = atcoder::modint1000000007;
istream& operator>>(istream& is, mint& a) {
    int t; is >> t; a = t;
    return is;
}
ostream& operator<<(ostream& os, mint a) {
    return os << a.val();
}
#endif
#ifdef DEBUG
#define _GLIBCXX_DEBUG
#else
#pragma GCC target("avx2")
#pragma GCC optimize("Ofast,unroll-loops")
#define cerr if (false) cerr
#undef assert
#define assert(...) void(0)
#undef endl
#define endl '\n'
#endif
#define overload3(a, b, c, name, ...) name
#define rep1(n) for (int i = 0; i < n; i++)
#define rep2(i, n) for (int i = 0; i < n; i++)
#define rep3(i, a, b) for (int i = a; i < b; i++)
#define rep(...) overload3(__VA_ARGS__, rep3, rep2, rep1)(__VA_ARGS__)
#define per1(n) for (int i = n - 1; i >= 0; i--)
#define per2(i, n) for (int i = n - 1; i >= 0; i--)
#define per3(i, a, b) for (int i = b - 1; i >= (a); i--)
#define per(...) overload3(__VA_ARGS__, per3, per2, per1)(__VA_ARGS__)
#define ALL(a) a.begin(), a.end()
#define vec vector
#undef long
#define long long long
template<typename T>
ostream& operator<<(ostream& os, vector<T> a) {
    const int n = a.size();
    rep(i, n) os << a[i] << " \n"[i + 1 == n];
    return os;
}
template<typename T, size_t n>
ostream& operator<<(ostream& os, array<T, n> a) {
    rep(i, n) os << a[i] << " \n"[i + 1 == n];
    return os;
}
template<typename T>
istream& operator>>(istream& is, vector<T>& a) {
    for (T& i : a) is >> i;
    return is;
}
template<typename T>
bool chmin(T& x, T y) {
    if (x > y) { x = y; return true; }
    return false;
}
template<typename T>
bool chmax(T& x, T y) {
    if (x < y) { x = y; return true; }
    return false;
}
template<typename T>
void operator++(vector<T>& a) {
    for (T& i : a) ++i;
}
template<typename T>
void operator--(vector<T>& a) {
    for (T& i : a) --i;
}
template<typename T>
void operator++(vector<T>& a, int) {
    for (T& i : a) i++;
}
template<typename T>
void operator--(vector<T>& a, int) {
    for (T& i : a) i--;
}
void solve()
{
    int n; cin >> n;
    vec<int> a(n - 1), b(n - 1);
    vec<long> c(n - 1);
    rep(n - 1) cin >> a[i] >> b[i] >> c[i];
    a--, b--;
    mint ans = 0, mul = mint(2).inv();
    while (*max_element(ALL(c)) != 0) {
        atcoder::dsu d(n);
        rep(i, n - 1) if (c[i] & 1) d.merge(a[i], b[i]);
        mint now = 0;
        for (auto& i : d.groups()) {
            mint val = i.size();
            now += val * (val - 1);
        }
        ans += now * mul;
        for (auto& i : c) i >>= 1;
        mul *= 2;
    }
    cout << ans << endl;
}
int main()
{
    srand((unsigned)time(NULL));
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    cout << fixed << setprecision(40);
    int t = 1;
    // cin >> t;
    while (t--)
        solve();
    return 0;
}
0