結果

問題 No.1843 Tree ANDistance
ユーザー SSRSSSRS
提出日時 2022-02-18 21:24:35
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 321 ms / 2,000 ms
コード長 1,015 bytes
コンパイル時間 2,292 ms
コンパイル使用メモリ 211,192 KB
実行使用メモリ 9,856 KB
最終ジャッジ日時 2024-06-29 08:17:19
合計ジャッジ時間 8,970 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 321 ms
9,216 KB
testcase_01 AC 310 ms
9,216 KB
testcase_02 AC 297 ms
8,756 KB
testcase_03 AC 307 ms
8,704 KB
testcase_04 AC 314 ms
9,856 KB
testcase_05 AC 245 ms
9,716 KB
testcase_06 AC 245 ms
9,600 KB
testcase_07 AC 291 ms
8,960 KB
testcase_08 AC 312 ms
9,088 KB
testcase_09 AC 286 ms
8,448 KB
testcase_10 AC 285 ms
8,320 KB
testcase_11 AC 304 ms
9,764 KB
testcase_12 AC 221 ms
9,252 KB
testcase_13 AC 223 ms
9,088 KB
testcase_14 AC 10 ms
5,376 KB
testcase_15 AC 10 ms
5,376 KB
testcase_16 AC 5 ms
5,376 KB
testcase_17 AC 5 ms
5,376 KB
testcase_18 AC 3 ms
5,376 KB
testcase_19 AC 10 ms
5,376 KB
testcase_20 AC 5 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 1 ms
5,376 KB
testcase_25 AC 1 ms
5,376 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 196 ms
7,936 KB
testcase_29 AC 131 ms
6,400 KB
testcase_30 AC 122 ms
6,016 KB
testcase_31 AC 206 ms
7,936 KB
testcase_32 AC 216 ms
8,448 KB
testcase_33 AC 68 ms
5,376 KB
testcase_34 AC 160 ms
7,168 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;
const long long MOD = 1000000007;
int main(){
  int N;
  cin >> N;
  vector<vector<pair<int, int>>> E(N);
  for (int i = 0; i < N - 1; i++){
    int A, B, C;
    cin >> A >> B >> C;
    A--;
    B--;
    E[A].push_back(make_pair(C, B));
    E[B].push_back(make_pair(C, A));
  }
  long long ans = 0;
  for (int i = 0; i < 30; i++){
    vector<bool> used(N, false);
    for (int j = 0; j < N; j++){
      if (!used[j]){
        used[j] = true;
        int cnt = 0;
        queue<int> Q;
        Q.push(j);
        while (!Q.empty()){
          int v = Q.front();
          Q.pop();
          cnt++;
          for (auto P : E[v]){
            if ((P.first >> i & 1) == 1){
              int w = P.second;
              if (!used[w]){
                used[w] = true;
                Q.push(w);
              }
            }
          }
        }
        ans += (long long) cnt * (cnt - 1) / 2 % MOD * (1 << i) % MOD;
      }
    }
  }
  ans %= MOD;
  cout << ans << endl;
}
0