結果

問題 No.1002 Twotone
ユーザー TAISA_TAISA_
提出日時 2020-03-01 21:20:45
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,151 ms / 5,000 ms
コード長 2,769 bytes
コンパイル時間 2,010 ms
コンパイル使用メモリ 192,208 KB
実行使用メモリ 65,592 KB
最終ジャッジ日時 2024-10-13 20:52:54
合計ジャッジ時間 12,241 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 269 ms
16,128 KB
testcase_04 AC 350 ms
19,840 KB
testcase_05 AC 364 ms
19,792 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 140 ms
13,312 KB
testcase_08 AC 263 ms
19,804 KB
testcase_09 AC 263 ms
19,712 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 254 ms
17,392 KB
testcase_12 AC 359 ms
21,504 KB
testcase_13 AC 389 ms
21,504 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 164 ms
13,464 KB
testcase_16 AC 363 ms
20,992 KB
testcase_17 AC 371 ms
21,120 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 423 ms
25,216 KB
testcase_20 AC 522 ms
35,156 KB
testcase_21 AC 527 ms
34,408 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 AC 347 ms
19,840 KB
testcase_24 AC 701 ms
31,856 KB
testcase_25 AC 687 ms
29,312 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 72 ms
15,636 KB
testcase_28 AC 116 ms
19,292 KB
testcase_29 AC 115 ms
19,252 KB
testcase_30 AC 2 ms
5,248 KB
testcase_31 AC 104 ms
18,880 KB
testcase_32 AC 119 ms
18,984 KB
testcase_33 AC 100 ms
18,904 KB
testcase_34 AC 1,151 ms
65,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define all(vec) vec.begin(), vec.end()
#define eb emplace_back
using namespace std;
using ll = long long;
using P = pair<ll, ll>;
constexpr ll INF = (1LL << 30) - 1LL;
constexpr ll LINF = (1LL << 60) - 1LL;
constexpr ll MOD = 1e9 + 7;
template <typename T> void chmin(T &a, T b) { a = min(a, b); }
template <typename T> void chmax(T &a, T b) { a = max(a, b); }
int n, k;
vector<vector<P>> G;
vector<int> vis, sz;
ll res;
void szd(int i, int p) {
    sz[i] = 1;
    for (auto &e : G[i]) {
        if (e.first == p || vis[e.first]) {
            continue;
        }
        szd(e.first, i);
        sz[i] += sz[e.first];
    }
}
int findc(int i, int p, int lim) {
    for (auto &e : G[i]) {
        if (e.first == p || vis[e.first]) {
            continue;
        }
        if (sz[e.first] >= lim) {
            return findc(e.first, i, lim);
        }
    }
    return i;
}
void dfs(int i, int p, int a, int b, map<P, ll> &mp) {
    if (a < b) {
        swap(a, b);
    }
    mp[P(a, b)]++;
    for (auto &e : G[i]) {
        if (e.first == p || vis[e.first]) {
            continue;
        }
        if (a == e.second || b == e.second) {
            dfs(e.first, i, a, b, mp);
        } else if (b == -1) {
            dfs(e.first, i, a, e.second, mp);
        }
    }
}
void calc(int v) {
    szd(v, -1);
    int c = findc(v, -1, sz[v] / 2);
    map<P, ll> mp;
    map<ll, ll> cnt, m1;
    ll sum = 0;
    for (auto &e : G[c]) {
        if (vis[e.first]) {
            continue;
        }
        map<P, ll> mpn;
        dfs(e.first, c, e.second, -1, mpn);
        for (auto p : mpn) {
            if (p.first.second == -1) {
                res +=
                    (cnt[p.first.first] + sum - m1[p.first.first]) * p.second;
            } else {
                res += (mp[p.first] + m1[p.first.first] + m1[p.first.second]) *
                       p.second;
            }
        }
        for (auto p : mpn) {
            if (p.first.second == -1) {
                m1[p.first.first] += p.second;
                sum += p.second;
            } else {
                res += p.second;
                cnt[p.first.first] += p.second;
                cnt[p.first.second] += p.second;
                mp[p.first] += p.second;
            }
        }
    }
    vis[c] = 1;
    for (auto &e : G[c]) {
        if (vis[e.first]) {
            continue;
        }
        calc(e.first);
    }
}
int main() {
    ios::sync_with_stdio(0);
    cin.tie(0);
    cin >> n >> k;
    G.resize(n);
    vis.resize(n);
    sz.resize(n);
    for (int i = 0; i < n - 1; i++) {
        int a, b, c;
        cin >> a >> b >> c;
        --a;
        --b;
        --c;
        G[a].eb(b, c);
        G[b].eb(a, c);
    }
    calc(0);
    cout << res << '\n';
}
0