結果

問題 No.2892 Lime and Karin
ユーザー noiminoimi
提出日時 2024-09-13 22:27:16
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 119 ms / 8,000 ms
コード長 3,532 bytes
コンパイル時間 2,673 ms
コンパイル使用メモリ 212,148 KB
実行使用メモリ 30,140 KB
最終ジャッジ日時 2024-09-13 22:27:24
合計ジャッジ時間 7,528 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 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 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 43 ms
8,960 KB
testcase_15 AC 40 ms
8,704 KB
testcase_16 AC 73 ms
12,032 KB
testcase_17 AC 17 ms
5,760 KB
testcase_18 AC 73 ms
12,156 KB
testcase_19 AC 102 ms
14,720 KB
testcase_20 AC 6 ms
5,376 KB
testcase_21 AC 52 ms
9,984 KB
testcase_22 AC 70 ms
11,776 KB
testcase_23 AC 27 ms
7,040 KB
testcase_24 AC 108 ms
15,104 KB
testcase_25 AC 108 ms
14,980 KB
testcase_26 AC 106 ms
15,100 KB
testcase_27 AC 107 ms
15,000 KB
testcase_28 AC 110 ms
15,108 KB
testcase_29 AC 119 ms
15,104 KB
testcase_30 AC 105 ms
14,988 KB
testcase_31 AC 114 ms
14,976 KB
testcase_32 AC 105 ms
14,976 KB
testcase_33 AC 111 ms
15,104 KB
testcase_34 AC 46 ms
15,376 KB
testcase_35 AC 47 ms
15,376 KB
testcase_36 AC 48 ms
15,504 KB
testcase_37 AC 50 ms
15,504 KB
testcase_38 AC 48 ms
15,372 KB
testcase_39 AC 83 ms
22,656 KB
testcase_40 AC 93 ms
29,400 KB
testcase_41 AC 99 ms
23,928 KB
testcase_42 AC 105 ms
30,140 KB
testcase_43 AC 101 ms
25,984 KB
testcase_44 AC 36 ms
8,064 KB
testcase_45 AC 105 ms
13,696 KB
testcase_46 AC 43 ms
8,704 KB
testcase_47 AC 56 ms
10,496 KB
testcase_48 AC 24 ms
6,528 KB
testcase_49 AC 77 ms
11,648 KB
testcase_50 AC 76 ms
15,232 KB
testcase_51 AC 76 ms
15,232 KB
testcase_52 AC 75 ms
15,232 KB
testcase_53 AC 78 ms
15,104 KB
testcase_54 AC 79 ms
15,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define pii pair<int, int>
#define pll pair<ll, ll>
#define vi vector<int>
#define vl vector<ll>
#define ov4(a, b, c, d, name, ...) name
#define rep3(i, a, b, c) for(ll i = (a); i < (b); i += (c))
#define rep2(i, a, b) rep3(i, a, b, 1)
#define rep1(i, n) rep2(i, 0, n)
#define rep0(n) rep1(aaaaa, n)
#define rep(...) ov4(__VA_ARGS__, rep3, rep2, rep1, rep0)(__VA_ARGS__)
#define per(i, a, b) for(ll i = (a) - 1; i >= (b); i--)
#define fore(e, v) for(auto &&e : v)
#define all(a) begin(a), end(a)
#define si(a) (int)(size(a))
#define lb(v, x) (lower_bound(all(v), x) - begin(v))
#define eb emplace_back

template <typename T, typename S> bool chmin(T &a, const S &b) { return a > b ? a = b, 1 : 0; }
template <typename T, typename S> bool chmax(T &a, const S &b) { return a < b ? a = b, 1 : 0; }

const int INF = 1e9 + 100;
const ll INFL = 3e18 + 100;

#define i128 __int128_t

struct _ {
    _() { cin.tie(0)->sync_with_stdio(0), cout.tie(0); }
} __;

struct BIT {
    vl a;
    BIT(ll n) : a(n + 1) {}
    void add(ll i, ll x) {
        i++;
        while(i < si(a)) a[i] += x, i += i & -i;
    }
    ll sum(ll r) {
        ll s = 0;
        while(r) s += a[r], r -= r & -r;
        return s;
    }
    ll sum(ll l, ll r) { return sum(r) - sum(l); }
};

int main() {
    int n;
    cin >> n;
    vector<vi> g(n);
    rep(n - 1) {
        int x, y;
        cin >> x >> y;
        --x, --y;
        g[x].eb(y), g[y].eb(x);
    }

    string s;
    cin >> s;
    vi a(n);
    rep(i, n) a[i] = (s[i] == '1' ? 1 : -1);

    if(n == 1) {
        cout << count(all(a), 1) << endl;
        exit(0);
    }

    vi sub(n), v(n);
    auto dfs = [&](auto &&f, int x, int p) -> void {
        v[x] += a[x];
        sub[x]++;
        if(g[x][0] == p) swap(g[x][0], g[x].back());
        fore(e, g[x]) {
            if(e == p) continue;
            v[e] = v[x];
            f(f, e, x);
            sub[x] += sub[e];
            if(sub[e] > sub[g[x][0]]) swap(e, g[x][0]);
        }
        return;
    };
    dfs(dfs, 0, -1);

    vi in(n), out(n), tour(n);
    int idx = 0;
    {
        auto dfs = [&](auto &&f, int x, int p) -> void {
            tour[idx] = x;
            in[x] = idx++;
            out[x] = in[x] + sub[x];
            fore(e, g[x]) if(e != p) f(f, e, x);
        };
        dfs(dfs, 0, -1);
    }

    ll ans = count(all(a), 1);
    BIT bit(n * 4 + 1);

    int car = n * 2;

    vi tmp;
    // rep(i, n) cout << v[i] << " ";
    // cout << endl;

    auto add = [&](int i) {
        bit.add(i + car, 1);
        tmp.eb(i + car);
    };
    auto dfs2 = [&](auto &&f, int x, int p, bool clear) -> void {
        rep(i, 1, si(g[x])) {
            int e = g[x][i];
            if(e == p) continue;
            f(f, e, x, true);
        }
        if(g[x][0] != p) f(f, g[x][0], x, false);

        ll tans = 0;
        tans += bit.sum(v[x] - a[x] + car + 1, 4 * n + 1);
        add(v[x]);
        rep(i, 1, si(g[x])) {
            int e = g[x][i];
            if(e == p) continue;
            rep(j, in[e], out[e]) {
                int t = tour[j];
                int tar = 2 * v[x] - a[x] - v[t];
                tans += bit.sum(tar + car + 1, 4 * n + 1);
            }
            rep(j, in[e], out[e]) add(v[tour[j]]);
        }
        // cout << x << ": " << tans << endl;

        ans += tans;
        if(clear) {
            fore(i, tmp) bit.add(i, -1);
            tmp.clear();
        }
    };
    dfs2(dfs2, 0, -1, true);
    cout << ans << endl;
}
0