結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 15 ms
4,376 KB
testcase_02 AC 15 ms
4,380 KB
testcase_03 AC 16 ms
4,376 KB
testcase_04 AC 15 ms
4,380 KB
testcase_05 AC 13 ms
4,376 KB
testcase_06 AC 1,109 ms
19,048 KB
testcase_07 AC 832 ms
18,988 KB
testcase_08 AC 931 ms
19,056 KB
testcase_09 AC 1,067 ms
19,172 KB
testcase_10 AC 854 ms
19,004 KB
testcase_11 AC 887 ms
19,180 KB
testcase_12 AC 936 ms
19,012 KB
testcase_13 AC 889 ms
19,208 KB
testcase_14 AC 1,012 ms
19,012 KB
testcase_15 AC 712 ms
19,184 KB
testcase_16 TLE -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
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);
  vector<int> b;
  queue<int> q;
  q.push(0);
  while (!q.empty()){
    int v = q.front();
    q.pop();
    b.push_back(v);
    for (int w : E[v]){
      if (w != p[v]){
        p[w] = v;
        c[v].push_back(w);
        q.push(w);
      }
    }
  }
  vector<int> pos(N);
  for (int i = 0; i < N; i++){
    pos[b[i]] = i;
  }
  vector<int> mn(N, N), mx(N, -1);
  for (int i = 1; i < N; i++){
    mn[p[i]] = min(mn[p[i]], pos[i]);
    mx[p[i]] = max(mx[p[i]], pos[i]);
  }
  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[pos[V]], X[V]) << endl;
    }
    if (T == 2){
      int V, K;
      long long C, D;
      cin >> V >> K >> C >> D;
      V--;
      if (V != 0){
        ST.range_apply(pos[p[V]], pos[p[V]] + 1, affine(C, D));
      }
      ST.range_apply(pos[V], pos[V] + 1, affine(C, D));
      if (!c[V].empty()){
        ST.range_apply(mn[V], mx[V] + 1, affine(C, D));
      }
    }
    if (T == 3){
      int V;
      long long C, D;
      cin >> V >> C >> D;
      V--;
      auto dfs = [&](auto dfs, int v) -> void {
        ST.range_apply(pos[v], pos[v] + 1, affine(C, D));
        for (int w : c[v]){
          dfs(dfs, w);
        }
      };
      dfs(dfs, V);
    }
  }
}
0