結果

問題 No.899 γatheree
ユーザー pekempeypekempey
提出日時 2019-10-04 22:02:08
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,658 bytes
コンパイル時間 1,523 ms
コンパイル使用メモリ 180,524 KB
実行使用メモリ 17,976 KB
最終ジャッジ日時 2024-10-03 07:38:57
合計ジャッジ時間 8,829 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
7,296 KB
testcase_01 WA -
testcase_02 AC 4 ms
7,552 KB
testcase_03 AC 3 ms
7,424 KB
testcase_04 AC 3 ms
7,424 KB
testcase_05 AC 4 ms
7,552 KB
testcase_06 AC 312 ms
17,536 KB
testcase_07 AC 319 ms
17,792 KB
testcase_08 AC 316 ms
17,664 KB
testcase_09 AC 344 ms
17,536 KB
testcase_10 AC 335 ms
17,664 KB
testcase_11 AC 339 ms
17,664 KB
testcase_12 WA -
testcase_13 AC 326 ms
17,792 KB
testcase_14 AC 332 ms
17,536 KB
testcase_15 AC 340 ms
17,664 KB
testcase_16 AC 334 ms
17,536 KB
testcase_17 AC 336 ms
17,536 KB
testcase_18 AC 332 ms
17,664 KB
testcase_19 AC 348 ms
17,664 KB
testcase_20 AC 328 ms
17,536 KB
testcase_21 AC 303 ms
17,792 KB
testcase_22 AC 284 ms
17,792 KB
testcase_23 AC 293 ms
17,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define rep(i, n) for (int i = 0; i < (n); i++)
#define repr(i, n) for (int i = (n) - 1; i >= 0; i--)
#define rep2(i, l, r) for (int i = (l); i < (r); i++)
#define rep2r(i, l, r) for (int i = (r) - 1; i >= (l); i--)
#define range(a) a.begin(), a.end()

using namespace std;
using ll = long long;

constexpr int U = 1 << 17;
ll dat[U * 2];
ll lazy[U * 2];
ll cnt[U * 2];

void apply(int k, ll v) {
  if (v == -1) return;
  dat[k] = v * cnt[k];
  lazy[k] = v;
}

void push(int k) {
  apply(k * 2 + 0, lazy[k]);
  apply(k * 2 + 1, lazy[k]);
  lazy[k] = -1;
}

void update(int a, int b, ll v, int k = 1, int l = 0, int r = U) {
  if (r <= a || b <= l) return;
  if (a <= l && r <= b) {
    apply(k, v);
    return;
  }
  push(k);
  update(a, b, v, k * 2 + 0, l, (l + r) / 2);
  update(a, b, v, k * 2 + 1, (l + r) / 2, r);
  dat[k] = dat[k * 2] + dat[k * 2 + 1];
}

ll query(int a, int b, int k = 1, int l = 0, int r = U) {
  if (r <= a || b <= l) return 0;
  if (a <= l && r <= b) return dat[k];
  push(k);
  ll vl = query(a, b, k * 2 + 0, l, (l + r) / 2);
  ll vr = query(a, b, k * 2 + 1, (l + r) / 2, r);
  return vl + vr;
}

int main() {
  cin.tie(nullptr);
  ios::sync_with_stdio(false);
  cout << fixed << setprecision(15);
  int N; cin >> N;
  vector<vector<int>> G(N);
  rep(i, N - 1) {
    int a, b; cin >> a >> b;
    G[a].push_back(b);
    G[b].push_back(a);
  }
  int k = 0;
  vector<int> par(N, -1);
  vector<int> L(N);
  vector<int> R(N);
  vector<int> L2(N, 1e9);
  vector<int> R2(N, -1e9);
  vector<int> label(N);
  queue<int> q;
  q.push(0);
  while (!q.empty()) {
    int u = q.front(); q.pop();
    L[u] = k + 1;
    for (int v : G[u]) if (v != par[u]) {
      label[v] = ++k;
      par[v] = u;
      q.push(v);
    }
    R[u] = k + 1;
  }
  rep(u, N) for (int v : G[u]) if (v != par[u]) {
    L2[u] = min(L2[u], L[v]);
    R2[u] = max(R2[u], R[v]);
  };
  vector<ll> A(N); rep(i, N) cin >> A[i];
  rep(i, N) {
    dat[label[i] + U] = A[i];
    cnt[i + U] = 1;
  }
  rep(i, U * 2) lazy[i] = -1;
  for (int i = U - 1; i >= 1; i--) {
    dat[i] = dat[i * 2] + dat[i * 2 + 1];
    cnt[i] = cnt[i * 2] + cnt[i * 2 + 1];
  }
  int Q; cin >> Q;
  while (Q--) {
    int x; cin >> x;
    ll s = 0;
    auto f = [&](int l, int r) {
      if (l <= r) {
        s += query(l, r);
        update(l, r, 0);
      }
    };
    f(L[x], R[x]);
    f(L2[x], R2[x]);
    if (par[x] != -1) {
      int p = par[x];
      f(label[p], label[p] + 1);
      f(L[p], R[p]);
      if (par[p] != -1) {
        int pp = par[p];
        f(label[pp], label[pp] + 1);
      }
    }
    update(label[x], label[x] + 1, s);
    cout << s << '\n';
  }
}
0