結果

問題 No.1002 Twotone
ユーザー 0w10w1
提出日時 2021-01-02 16:57:38
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 3,225 ms / 5,000 ms
コード長 4,503 bytes
コンパイル時間 4,336 ms
コンパイル使用メモリ 250,436 KB
実行使用メモリ 130,568 KB
最終ジャッジ日時 2024-10-12 06:17:01
合計ジャッジ時間 41,171 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 29 ms
31,232 KB
testcase_02 AC 26 ms
28,032 KB
testcase_03 AC 815 ms
91,648 KB
testcase_04 AC 1,104 ms
101,248 KB
testcase_05 AC 1,136 ms
126,940 KB
testcase_06 AC 21 ms
22,496 KB
testcase_07 AC 711 ms
49,408 KB
testcase_08 AC 1,334 ms
97,664 KB
testcase_09 AC 1,356 ms
92,420 KB
testcase_10 AC 9 ms
9,404 KB
testcase_11 AC 1,583 ms
89,728 KB
testcase_12 AC 2,119 ms
79,788 KB
testcase_13 AC 2,210 ms
103,680 KB
testcase_14 AC 11 ms
11,812 KB
testcase_15 AC 1,028 ms
56,192 KB
testcase_16 AC 2,231 ms
86,536 KB
testcase_17 AC 2,214 ms
82,152 KB
testcase_18 AC 35 ms
37,376 KB
testcase_19 AC 1,704 ms
106,368 KB
testcase_20 AC 1,990 ms
98,560 KB
testcase_21 AC 1,973 ms
97,768 KB
testcase_22 AC 11 ms
11,520 KB
testcase_23 AC 1,692 ms
68,480 KB
testcase_24 AC 3,225 ms
111,176 KB
testcase_25 AC 3,157 ms
110,880 KB
testcase_26 AC 7 ms
7,296 KB
testcase_27 AC 255 ms
93,256 KB
testcase_28 AC 442 ms
97,056 KB
testcase_29 AC 374 ms
107,936 KB
testcase_30 AC 9 ms
9,088 KB
testcase_31 AC 363 ms
107,132 KB
testcase_32 AC 506 ms
95,256 KB
testcase_33 AC 402 ms
117,060 KB
testcase_34 AC 652 ms
130,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

/*^ vector extensions  */

template<typename T>
vector<T> concat(vector<T> a, vector<T> b) {
  a.insert(a.end(), b.begin(), b.end());
  return a;
}

template<typename T, size_t sz>
struct _Matrix_type { typedef vector<typename _Matrix_type<T, sz - 1>::type> type; };
template<typename T>
struct _Matrix_type<T, 1> { typedef T type; };
template<typename T>
struct _Matrix {
  static auto build(size_t s) { return vector<T>(s); }
  template<typename ...Args>
  static auto build(size_t f, Args... args) {
    return vector<typename _Matrix_type<T, 1 + sizeof...(args)>::type>(f, _Matrix<T>::build(args...));
  }
};
template<typename T, typename... Args>
auto buildMatrix(Args... args) { return _Matrix<T>::build(args...); }

/*  vector extensions $*/

/*^ generic definitions  */

template<typename F>
struct _RecurFun : F {
  _RecurFun(F&& f) : F(forward<F>(f)) {}
  template<typename... Args>
  decltype(auto) operator()(Args&&... args) const { return F::operator()(*this, forward<Args>(args)...); }
};

template<typename F>
decltype(auto) RecurFun(F&& f) { return _RecurFun<F> { forward<F>(f) }; }

/*  generic definitions $*/

/*^ pbds  */

#if __has_include(<ext/pb_ds/assoc_container.hpp>)
  #include <ext/pb_ds/assoc_container.hpp>
  using namespace __gnu_pbds;

  const int RandomIntSeed = chrono::high_resolution_clock::now().time_since_epoch().count();
  struct HashInt { int operator()(int x) const { return x ^ RandomIntSeed; } };

  template<typename T, typename U, typename H = hash<T>>
  using Gmap = cc_hash_table<T, U, H>;
#endif

/*  pbds $*/

struct Centroid {
  vector<vector<int>> graph;
  vector<int> size, dead;
  Centroid(const vector<vector<int>> &g) : size(g.size()), dead(g.size()), graph(g) {}
  vector<int> findCentroids(int root) {
    vector<int> centroids;
    function<void(int, int)> buildSize = [&](int u, int p) {
      size[u] = 1;
      for (int v : graph[u]) if (v != p && !dead[v]) buildSize(v, u), size[u] += size[v];
    };
    buildSize(root, -1);
    function<void(int, int)> buildCentroids = [&](int u, int p) {
      int ok = (size[root] - size[u]) * 2 <= size[root];
      for (int v : graph[u]) if (v != p && !dead[v]) buildCentroids(v, u), ok &= size[v] * 2 <= size[root];
      if (ok) centroids.push_back(u);
    };
    buildCentroids(root, -1);
    assert(1 <= centroids.size() && centroids.size() <= 2);
    return centroids;
  }
};

int main() {
  ios::sync_with_stdio(false);

  int N, K; {
    cin >> N >> K;
  }

  vector<vector<int>> G(N); 
  vector<Gmap<int, int>> C(N); {
    for (int u = 0; u + 1 < N; ++u) {
      int U, V, Z; { 
        cin >> U >> V >> Z;
        --U, --V, --Z;
      }
      G[U].push_back(V);
      G[V].push_back(U);
      C[U][V] = Z;
      C[V][U] = Z;
    }
  }

  int64_t res = 0; {
    Centroid cd(G);

    queue<int> que({ cd.findCentroids(0)[0] });
    int all = 0; // single color
    vector<int> cnt(K), cntx(K);
    vector<Gmap<int, int>> cnt2(K);
    while (que.size()) {
      int u = que.front();
      que.pop();

      for (int v : G[u]) if (!cd.dead[v]) {
        RecurFun([&](auto count, int u, int p, int a, int b) -> void {
          for (int v : G[u]) if (v != p && !cd.dead[v]) {
            if (a == C[u][v] || b == C[u][v]) count(v, u, a, b);
            else if (a == -1) count(v, u, C[u][v], b);
          }
          if (a == -1) res += (all - cnt[b]) + cntx[b];
          else res += 1 + cnt[a] + cnt[b] + cnt2[a][b];
        })(v, u, -1, C[u][v]);

        RecurFun([&](auto update, int u, int p, int a, int b) -> void {
          for (int v : G[u]) if (v != p && !cd.dead[v]) {
            if (a == C[u][v] || b == C[u][v]) update(v, u, a, b);
            else if (a == -1) update(v, u, C[u][v], b);
          }
          if (a == -1) ++cnt[b], ++all;
          else ++cntx[a], ++cntx[b], ++cnt2[a][b], ++cnt2[b][a];
        })(v, u, -1, C[u][v]);
      }

      for (int v : G[u]) if (!cd.dead[v]) {
        RecurFun([&](auto update, int u, int p, int a, int b) -> void {
          for (int v : G[u]) if (v != p && !cd.dead[v]) {
            if (a == C[u][v] || b == C[u][v]) update(v, u, a, b);
            else if (a == -1) update(v, u, C[u][v], b);
          }
          if (a == -1) --cnt[b], --all;
          else --cntx[a], --cntx[b], --cnt2[a][b], --cnt2[b][a];
        })(v, u, -1, C[u][v]);
      }

      cd.dead[u] = 1;
      for (int v : G[u]) if (!cd.dead[v]) que.push(cd.findCentroids(v)[0]);
    }
  }

  cout << res << endl;
}

0