結果

問題 No.2892 Lime and Karin
ユーザー noiminoimi
提出日時 2024-09-13 23:52:23
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 3,537 bytes
コンパイル時間 2,581 ms
コンパイル使用メモリ 211,308 KB
実行使用メモリ 26,272 KB
最終ジャッジ日時 2024-09-13 23:52:31
合計ジャッジ時間 7,286 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
5,376 KB
testcase_02 WA -
testcase_03 AC 2 ms
5,376 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
権限があれば一括ダウンロードができます

ソースコード

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 {
    vi a;
    BIT(int n) : a(n + 1) {}
    void add(int i, int x) {
        i++;
        while(i < si(a)) a[i] += x, i += i & -i;
    }
    int sum(int r) {
        int s = 0;
        while(r) s += a[r], r -= r & -r;
        return s;
    }
    int sum(int l, int 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 * 2 + 1);

    int car = n;

    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