結果

問題 No.1002 Twotone
ユーザー tempura_pptempura_pp
提出日時 2020-02-23 03:19:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 822 ms / 5,000 ms
コード長 2,551 bytes
コンパイル時間 1,551 ms
コンパイル使用メモリ 133,632 KB
実行使用メモリ 36,488 KB
最終ジャッジ日時 2024-04-18 08:15:38
合計ジャッジ時間 14,526 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
8,320 KB
testcase_01 AC 4 ms
8,448 KB
testcase_02 AC 5 ms
8,320 KB
testcase_03 AC 289 ms
16,640 KB
testcase_04 AC 387 ms
17,408 KB
testcase_05 AC 416 ms
19,840 KB
testcase_06 AC 4 ms
8,448 KB
testcase_07 AC 224 ms
14,272 KB
testcase_08 AC 414 ms
18,500 KB
testcase_09 AC 413 ms
18,524 KB
testcase_10 AC 5 ms
8,320 KB
testcase_11 AC 378 ms
18,856 KB
testcase_12 AC 522 ms
19,412 KB
testcase_13 AC 521 ms
21,264 KB
testcase_14 AC 4 ms
8,320 KB
testcase_15 AC 272 ms
14,344 KB
testcase_16 AC 544 ms
18,708 KB
testcase_17 AC 532 ms
19,068 KB
testcase_18 AC 4 ms
8,192 KB
testcase_19 AC 513 ms
24,960 KB
testcase_20 AC 611 ms
31,360 KB
testcase_21 AC 608 ms
30,720 KB
testcase_22 AC 4 ms
8,448 KB
testcase_23 AC 410 ms
20,104 KB
testcase_24 AC 822 ms
29,340 KB
testcase_25 AC 821 ms
26,760 KB
testcase_26 AC 5 ms
8,320 KB
testcase_27 AC 148 ms
18,260 KB
testcase_28 AC 236 ms
19,668 KB
testcase_29 AC 243 ms
20,564 KB
testcase_30 AC 4 ms
8,320 KB
testcase_31 AC 230 ms
18,512 KB
testcase_32 AC 236 ms
18,384 KB
testcase_33 AC 221 ms
18,384 KB
testcase_34 AC 714 ms
36,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>
#include<algorithm>
#include<vector>
#include<iomanip>
#include<math.h>
#include<complex>
#include<queue>
#include<deque>
#include<stack>
#include<map>
#include<set>
#include<bitset>
#include<functional>
#include<assert.h>
#include<numeric>
using namespace std;
#define REP(i,m,n) for(int i=(int)(m) ; i < (int) (n) ; ++i )
#define rep(i,n) REP(i,0,n)
using ll = long long;
const int inf=1e9+7;
const ll longinf=1LL<<60 ;
const ll mod=1e9+7 ;


vector<pair<int,int>> v[202020];
int sz[202020];
bool used[202020];

void szdfs(int x,int p){
    sz[x]=1;
    for(auto [to,color] : v[x]){
        if(to==p||used[to])continue;
        szdfs(to,x);
        sz[x]+=sz[to];
    }
}

int centroid(int x,int p,int total){
    for(auto [to,color] : v[x]){
        if(to==p||used[to])continue;
        if(2*sz[to]>total)return centroid(to,x,total);
    }
    return x;
}
map<pair<int,int>, int> MP, mp;
int ONE[202020], one[202020], TWO[202020], two[202020];
int ONES, ones;
ll ans;

void dfs(int x,int p, int fi, int se, vector<int>&used_c){
    if(fi && se){
        ans += MP[minmax(fi,se)]++-mp[minmax(fi,se)]++;

        ans += ONE[fi]-one[fi];

        ans += ONE[se]-one[se];

        ++TWO[fi];++TWO[se];
        ++two[fi];++two[se];
    }
    else if(fi){
        ans += TWO[fi]-two[fi];

        ans += ONES++-ONE[fi]++;
        ans -= ones++-one[fi]++;
    }
    for(auto [to,color] : v[x]){
        if(to==p||used[to])continue;
        used_c.push_back(color);
        if(!se){
            if(color==fi)dfs(to, x, fi, se,used_c);
            else dfs(to,x,fi,color,used_c);
        }
        else if(fi==color||se==color)dfs(to, x, fi, se,used_c);
    }
}

void solve(int x,int p){
    szdfs(x,-1);
    if(sz[x]==1)return ; 
    x =centroid(x,-1,sz[x]);
    used[x]=1;
    vector<int> USED_C;
    for(auto [to,color]:v[x]){
        ones = 0;
        if(to==p||used[to])continue;
        vector<int>used_c(1,color);
        dfs(to, x, color,0,used_c);
        mp.clear();
        for(auto e:used_c){
            USED_C.push_back(e);
            one[e]=two[e]=0;
        }
    }
    for(auto e:MP)ans += e.second;
    MP.clear();
    ONES=0;
    for(auto e:USED_C)ONE[e]=TWO[e]=0;
    for(auto [to,color]:v[x]){
        if(to==p||used[to])continue;
        solve(to,x);
    }
}


int main(){
    int n,k;
    cin>>n>>k;
    rep(i,n-1){
        int x,y,z;
        cin>>x>>y>>z;
        --x;--y;
        v[x].emplace_back(y,z);
        v[y].emplace_back(x,z);
    }
    solve(0,-1);
    cout<<ans<<endl;
    return 0;
}
0