結果

問題 No.2340 Triple Tree Query (Easy)
ユーザー SSRSSSRS
提出日時 2023-05-27 04:42:05
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 2,733 bytes
コンパイル時間 1,907 ms
コンパイル使用メモリ 180,672 KB
実行使用メモリ 23,828 KB
最終ジャッジ日時 2023-08-28 00:42:37
合計ジャッジ時間 22,201 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 10 ms
4,376 KB
testcase_02 AC 9 ms
4,376 KB
testcase_03 AC 9 ms
4,376 KB
testcase_04 AC 9 ms
4,376 KB
testcase_05 AC 10 ms
4,380 KB
testcase_06 AC 430 ms
18,288 KB
testcase_07 AC 434 ms
18,332 KB
testcase_08 AC 426 ms
18,316 KB
testcase_09 AC 429 ms
18,384 KB
testcase_10 AC 425 ms
18,412 KB
testcase_11 AC 433 ms
18,348 KB
testcase_12 AC 428 ms
18,348 KB
testcase_13 AC 426 ms
18,384 KB
testcase_14 AC 425 ms
18,264 KB
testcase_15 AC 430 ms
18,388 KB
testcase_16 AC 473 ms
23,828 KB
testcase_17 AC 460 ms
22,432 KB
testcase_18 AC 460 ms
22,164 KB
testcase_19 AC 460 ms
23,408 KB
testcase_20 AC 460 ms
21,952 KB
testcase_21 AC 435 ms
17,884 KB
testcase_22 AC 427 ms
17,824 KB
testcase_23 AC 429 ms
17,688 KB
testcase_24 AC 459 ms
19,976 KB
testcase_25 AC 458 ms
19,668 KB
testcase_26 AC 459 ms
19,556 KB
testcase_27 AC 461 ms
19,652 KB
testcase_28 AC 462 ms
19,708 KB
testcase_29 AC 376 ms
17,740 KB
testcase_30 AC 373 ms
17,716 KB
testcase_31 AC 431 ms
17,948 KB
testcase_32 TLE -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
const long long MOD = 998244353;
struct affine{
  long long a, b;
  affine(){
    a = 1;
    b = 0;
  }
  affine(int a, int b): a(a), b(b){
  }
};
affine composite(affine A, affine B){
  return affine(A.a * B.a % MOD, (A.b * B.a + B.b) % MOD);
}
int value(affine A, int x){
  return (A.a * x + A.b) % MOD;
}
template <typename T>
struct dual_segment_tree{
  int N;
  vector<T> ST;
  function<T(T, T)> f;
  T E;
  dual_segment_tree(int n, function<T(T, T)> f, T E): f(f), E(E){
    N = 1;
    while (N < n){
      N *= 2;
    }
    ST = vector<T>(N * 2 - 1, E);
  }
  void push(int i){
    if (i < N - 1){
      ST[i * 2 + 1] = f(ST[i * 2 + 1], ST[i]);
      ST[i * 2 + 2] = f(ST[i * 2 + 2], ST[i]);
      ST[i] = E;
    }
  }
  T operator [](int k){
    int v = 0;
    for (int i = N / 2; i >= 1; i >>= 1){
      push(v);
      if ((k & i) == 0){
        v = v * 2 + 1;
      } else {
        v = v * 2 + 2;
      }
    }
    return ST[v];
  }
  void range_apply(int L, int R, T x, int i, int l, int r){
    if (r <= L || R <= l){
    } else if (L <= l && r <= R){
      ST[i] = f(ST[i], x);
    } else {
      push(i);
      int m = (l + r) / 2;
      range_apply(L, R, x, i * 2 + 1, l, m);
      range_apply(L, R, x, i * 2 + 2, m, r);
    }
  }
  void range_apply(int L, int R, T x){
    range_apply(L, R, x, 0, 0, N);
  }
};
int main(){
  int N, Q;
  cin >> N >> Q;
  vector<vector<int>> E(N);
  for (int i = 0; i < N - 1; i++){
    int A, B;
    cin >> A >> B;
    A--;
    B--;
    E[A].push_back(B);
    E[B].push_back(A);
  }
  vector<int> X(N);
  for (int i = 0; i < N; i++){
    cin >> X[i];
  }
  vector<int> p(N, -1);
  vector<vector<int>> c(N);
  queue<int> q;
  q.push(0);
  while (!q.empty()){
    int v = q.front();
    q.pop();
    for (int w : E[v]){
      if (w != p[v]){
        p[w] = v;
        c[v].push_back(w);
        q.push(w);
      }
    }
  }
  vector<int> in(N), out(N);
  int t = 0;
  auto dfs = [&](auto dfs, int v = 0) -> void {
    in[v] = t;
    t++;
    for (int w : c[v]){
      dfs(dfs, w);
    }
    out[v] = t;
  };
  dfs(dfs);
  dual_segment_tree<affine> ST(N, composite, affine());
  for (int i = 0; i < Q; i++){
    int T;
    cin >> T;
    if (T == 1){
      int V;
      cin >> V;
      V--;
      cout << value(ST[in[V]], X[V]) << endl;
    }
    if (T == 2){
      int V, K;
      long long C, D;
      cin >> V >> K >> C >> D;
      V--;
      ST.range_apply(in[V], in[V] + 1, affine(C, D));
      for (int w : E[V]){
        ST.range_apply(in[w], in[w] + 1, affine(C, D));
      }
    }
    if (T == 3){
      int V;
      long long C, D;
      cin >> V >> C >> D;
      V--;
      ST.range_apply(in[V], out[V], affine(C, D));
    }
  }
}
0