結果

問題 No.1769 Don't Stop the Game
ユーザー 👑 NachiaNachia
提出日時 2021-11-27 14:07:10
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 181 ms / 3,000 ms
コード長 1,955 bytes
コンパイル時間 1,052 ms
コンパイル使用メモリ 90,436 KB
実行使用メモリ 33,856 KB
最終ジャッジ日時 2024-06-30 04:22:05
合計ジャッジ時間 5,728 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 109 ms
18,672 KB
testcase_09 AC 78 ms
14,368 KB
testcase_10 AC 119 ms
18,064 KB
testcase_11 AC 73 ms
14,524 KB
testcase_12 AC 123 ms
22,156 KB
testcase_13 AC 124 ms
22,536 KB
testcase_14 AC 130 ms
22,532 KB
testcase_15 AC 152 ms
22,408 KB
testcase_16 AC 166 ms
22,532 KB
testcase_17 AC 158 ms
22,396 KB
testcase_18 AC 178 ms
22,532 KB
testcase_19 AC 177 ms
22,536 KB
testcase_20 AC 180 ms
22,528 KB
testcase_21 AC 180 ms
22,532 KB
testcase_22 AC 181 ms
22,532 KB
testcase_23 AC 131 ms
22,532 KB
testcase_24 AC 128 ms
22,532 KB
testcase_25 AC 72 ms
22,968 KB
testcase_26 AC 116 ms
22,840 KB
testcase_27 AC 100 ms
33,732 KB
testcase_28 AC 137 ms
33,856 KB
testcase_29 AC 136 ms
29,148 KB
testcase_30 AC 143 ms
29,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
using i32 = int32_t;
using u32 = uint32_t;
using i64 = int64_t;
using u64 = uint64_t;
#define rep(i,n) for(int i=0; i<(n); i++)


struct Edge{ int to; int h; };

int N;
vector<vector<Edge>> E;
vector<int> P;
vector<int> Z;

vector<int> H;
vector<int> SH;

vector<int> black_stack;
vector<int> prev_block;
vector<int> block_size;

void dfs(int p = 0, int pre = -1){

    int h = H[p];
    int prev_black_p = black_stack[h];
    block_size[p] = Z[p];
    prev_block[p] = prev_black_p;

    block_size[prev_black_p] -= Z[p];

    for(auto e : E[p]) if(e.to != pre){
        black_stack[h] = e.to;
        dfs(e.to,p);
        black_stack[h] = prev_black_p;
    }
}


int main(){
    cin >> N;
    E.resize(N);
    rep(i,N-1){
        int u,v,c; cin >> u >> v >> c; u--; v--;
        E[u].push_back({ v,c });
        E[v].push_back({ u,c });
    }

    vector<int> I = {0};
    P.assign(N,-1);
    H.assign(N,0);
    rep(i,I.size()){
        int p = I[i];
        for(auto e : E[p]){
            if(P[p] == e.to) continue;
            I.push_back(e.to);
            P[e.to] = p;
            H[e.to] = H[p] ^ e.h;
        }
    }
    Z.assign(N,1);
    for(int i=N-1; i>=1; i--) Z[P[I[i]]] += Z[I[i]];
    
    SH = H;
    sort(SH.begin(), SH.end());
    SH.erase(unique(SH.begin(),SH.end()),SH.end());
    for(int& h : H) h = lower_bound(SH.begin(),SH.end(),h) - SH.begin();
    
    black_stack.assign(N,0);
    rep(i,N) black_stack[i] = N + i;
    prev_block.assign(N,0);
    rep(i,N) prev_block[i] = N + H[i];
    block_size.assign(2*N,N);

    dfs();
    
    i64 ans = 0;
    for(int p=1; p<N; p++) ans += block_size[p];
    for(int p=1; p<N; p++) ans += block_size[prev_block[p]];
    cout << ans << endl;

    return 0;
}




struct ios_do_not_sync {
    ios_do_not_sync() {
        ios::sync_with_stdio(false);
        cin.tie(nullptr);
    }
} ios_do_not_sync_instance;
0