結果

問題 No.1769 Don't Stop the Game
ユーザー auauaauaua
提出日時 2021-11-27 01:35:45
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 864 ms / 3,000 ms
コード長 1,781 bytes
コンパイル時間 1,777 ms
コンパイル使用メモリ 183,200 KB
実行使用メモリ 108,216 KB
最終ジャッジ日時 2024-06-29 19:20:29
合計ジャッジ時間 15,560 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
18,816 KB
testcase_01 AC 9 ms
18,816 KB
testcase_02 AC 9 ms
18,816 KB
testcase_03 AC 10 ms
18,944 KB
testcase_04 AC 9 ms
18,816 KB
testcase_05 AC 11 ms
18,944 KB
testcase_06 AC 11 ms
18,908 KB
testcase_07 AC 11 ms
19,064 KB
testcase_08 AC 456 ms
60,032 KB
testcase_09 AC 404 ms
58,880 KB
testcase_10 AC 612 ms
81,408 KB
testcase_11 AC 343 ms
50,944 KB
testcase_12 AC 349 ms
42,812 KB
testcase_13 AC 354 ms
43,264 KB
testcase_14 AC 378 ms
47,232 KB
testcase_15 AC 439 ms
55,168 KB
testcase_16 AC 617 ms
73,976 KB
testcase_17 AC 773 ms
92,632 KB
testcase_18 AC 838 ms
103,116 KB
testcase_19 AC 864 ms
104,192 KB
testcase_20 AC 859 ms
108,216 KB
testcase_21 AC 854 ms
105,216 KB
testcase_22 AC 857 ms
106,624 KB
testcase_23 AC 308 ms
35,200 KB
testcase_24 AC 328 ms
39,168 KB
testcase_25 AC 199 ms
53,212 KB
testcase_26 AC 457 ms
65,752 KB
testcase_27 AC 237 ms
84,476 KB
testcase_28 AC 487 ms
96,952 KB
testcase_29 AC 544 ms
82,944 KB
testcase_30 AC 545 ms
82,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define int long long
#define REP(i,m,n) for(int i=(m);i<(n);i++)
#define rep(i,n) REP(i,0,n)
#define pb push_back
#define all(a) a.begin(),a.end()
#define rall(c) (c).rbegin(),(c).rend()
#define mp make_pair
#define endl '\n'
//#define vec vector<ll>
//#define mat vector<vector<ll> >
#define fi first
#define se second
#define double long double
typedef long long ll;
typedef unsigned long long ull;
typedef pair<ll,ll> pll;
//typedef long double ld;
typedef complex<double> Complex;
const ll INF=1e9+7;
const ll MOD=998244353;
const ll inf=INF*INF;
const ll mod=MOD;
const ll MAX=200010;
const double PI=acos(-1.0);
typedef vector<vector<ll> > mat;
typedef vector<ll> vec;

vector<map<ll,pll> >ma(MAX);
vector<vector<pll> >G(MAX);
ll sum=0;
vector<ll>sz(MAX);
ll n;
void dfs(ll i,ll p,ll s){
    map<ll,pll>tmp;
    ll cnt=1;
    for(auto e:G[i]){
        if(e.fi==p)continue;
        dfs(e.fi,i,s^e.se);
        cnt+=sz[e.fi];
    }
    for(auto e:G[i]){
        if(e.fi==p)continue;
        ll z=sz[e.fi];
        sum+=ma[e.fi][s].fi*(cnt-z);
        if(ma[e.fi].size()>tmp.size()){
            swap(tmp,ma[e.fi]);
        }
        for(auto u:ma[e.fi]){
            if(u.fi!=s)sum+=u.se.fi*tmp[u.fi].se+u.se.se*tmp[u.fi].fi;
            tmp[u.fi].fi+=u.se.fi;
            tmp[u.fi].se+=u.se.se;
        }
    }
    sum+=tmp[s].se;
    sum+=(n-cnt)*tmp[s].fi;
    tmp[s].fi=1;
    tmp[s].se=cnt;
    swap(ma[i],tmp);
    sz[i]=cnt;
}

void solve(){
    cin>>n;
    rep(i,n-1){
        ll a,b,c;cin>>a>>b>>c;
        a--;b--;
        G[a].pb(mp(b,c));
        G[b].pb(mp(a,c));
    }
    dfs(0,-1,0);
    ll ans=n*(n-1)-sum;
    cout<<ans<<endl;
}

signed main(){
    //cin.tie(0);
    //ios::sync_with_stdio(false);
    solve();
}
0