結果

問題 No.1548 [Cherry 2nd Tune B] 貴方と私とサイクルとモーメント
ユーザー SSRSSSRS
提出日時 2021-06-11 22:25:17
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 237 ms / 4,500 ms
コード長 4,014 bytes
コンパイル時間 2,191 ms
コンパイル使用メモリ 180,188 KB
実行使用メモリ 31,104 KB
最終ジャッジ日時 2024-05-08 18:19:58
合計ジャッジ時間 11,455 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 173 ms
17,024 KB
testcase_03 AC 58 ms
10,240 KB
testcase_04 AC 172 ms
30,268 KB
testcase_05 AC 17 ms
5,376 KB
testcase_06 AC 133 ms
16,556 KB
testcase_07 AC 168 ms
30,848 KB
testcase_08 AC 185 ms
17,100 KB
testcase_09 AC 125 ms
10,368 KB
testcase_10 AC 126 ms
30,080 KB
testcase_11 AC 145 ms
30,300 KB
testcase_12 AC 85 ms
6,784 KB
testcase_13 AC 93 ms
30,196 KB
testcase_14 AC 123 ms
10,112 KB
testcase_15 AC 104 ms
30,976 KB
testcase_16 AC 147 ms
17,280 KB
testcase_17 AC 185 ms
30,080 KB
testcase_18 AC 156 ms
30,592 KB
testcase_19 AC 67 ms
10,084 KB
testcase_20 AC 115 ms
30,464 KB
testcase_21 AC 115 ms
16,640 KB
testcase_22 AC 237 ms
31,052 KB
testcase_23 AC 231 ms
31,100 KB
testcase_24 AC 234 ms
30,976 KB
testcase_25 AC 235 ms
30,976 KB
testcase_26 AC 230 ms
30,912 KB
testcase_27 AC 233 ms
31,104 KB
testcase_28 AC 227 ms
30,916 KB
testcase_29 AC 228 ms
30,956 KB
testcase_30 AC 227 ms
31,104 KB
testcase_31 AC 233 ms
30,976 KB
testcase_32 AC 212 ms
30,976 KB
testcase_33 AC 209 ms
30,976 KB
testcase_34 AC 212 ms
31,012 KB
testcase_35 AC 212 ms
30,976 KB
testcase_36 AC 214 ms
30,976 KB
testcase_37 AC 186 ms
30,972 KB
testcase_38 AC 208 ms
31,028 KB
testcase_39 AC 211 ms
30,876 KB
testcase_40 AC 214 ms
30,976 KB
testcase_41 AC 214 ms
30,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
const long long MOD = 998244353;
long long modpow(long long a, long long b){
  long long ans = 1;
  while (b > 0){
    if (b % 2 == 1){
      ans *= a;
      ans %= MOD;
    }
    a *= a;
    a %= MOD;
    b /= 2;
  }
  return ans;
}
long long modinv(long long a){
  return modpow(a, MOD - 2);
}
struct lazy_segment_tree{
  int N;
  vector<array<long long, 5>> ST;
  vector<long long> lazy;
  lazy_segment_tree(vector<long long> A){
    int N2 = A.size();
    N = 1;
    while (N < N2){
      N *= 2;
    }
    ST = vector<array<long long, 5>>(N * 2 - 1);
    for (int i = 0; i < N2; i++){
      ST[N - 1 + i][0] = 1;
      for (int j = 0; j < 4; j++){
        ST[N - 1 + i][j + 1] = ST[N - 1 + i][j] * A[i] % MOD;
      }
    }
    for (int i = N2; i < N; i++){
      for (int j = 0; j < 5; j++){
        ST[N - 1 + i][j] = 0;
      }
    }
    for (int i = N - 2; i >= 0; i--){
      for (int j = 0; j < 5; j++){
        ST[i][j] = (ST[i * 2 + 1][j] + ST[i * 2 + 2][j]) % MOD;
      }
    }
    lazy = vector<long long>(N * 2 - 1, -1);
  }
  void eval(int i){
    if (lazy[i] != -1){
      if (i < N - 1){
        lazy[i * 2 + 1] = lazy[i];
        lazy[i * 2 + 2] = lazy[i];
      }
      for (int j = 0; j < 4; j++){
        ST[i][j + 1] = ST[i][j] * lazy[i] % MOD;
      }
      lazy[i] = -1;
    }
  }
  void range_update(int L, int R, long long x, int i, int l, int r){
    eval(i);
    if (r <= L || R <= l){
      return;
    } else if (L <= l && r <= R){
      lazy[i] = x;
      eval(i);
    } else {
      int m = (l + r) / 2;
      range_update(L, R, x, i * 2 + 1, l, m);
      range_update(L, R, x, i * 2 + 2, m, r);
      for (int j = 1; j < 5; j++){
        ST[i][j] = (ST[i * 2 + 1][j] + ST[i * 2 + 2][j]) % MOD;
      }
    }
  }
  void range_update(int L, int R, long long x){
    range_update(L, R, x, 0, 0, N);
  }
  array<long long, 5> range_sum(int L, int R, int i, int l, int r){
    eval(i);
    if (r <= L || R <= l){
      array<long long, 5> ans;
      for (int i = 0; i < 5; i++){
        ans[i] = 0;
      }
      return ans;
    } else if (L <= l && r <= R){
      return ST[i];
    } else {
      int m = (l + r) / 2;
      array<long long, 5> A = range_sum(L, R, i * 2 + 1, l, m);
      array<long long, 5> B = range_sum(L, R, i * 2 + 2, m, r);
      array<long long, 5> ans;
      for (int j = 0; j < 5; j++){
        ans[j] = (A[j] + B[j]) % MOD;
      }
      return ans;
    }
  }
  array<long long, 5> range_sum(int L, int R){
    return range_sum(L, R, 0, 0, N);
  }
};
int main(){
  int N;
  cin >> N;
  vector<long long> A(N);
  for (int i = 0; i < N; i++){
    cin >> A[i];
  }
  lazy_segment_tree ST(A);
  vector<vector<long long>> binom(5, vector<long long>(5, 1));
  for (int i = 2; i < 5; i++){
    for (int j = 1; j < i; j++){
      binom[i][j] = binom[i - 1][j - 1] + binom[i - 1][j];
    }
  }
  int Q;
  cin >> Q;
  for (int i = 0; i < Q; i++){
    int t;
    cin >> t;
    if (t == 0){
      int U, V, W, B;
      cin >> U >> V >> W >> B;
      U--;
      V--;
      W--;
      if (U > V){
        swap(U, V);
      }
      if (U < W && W < V){
        ST.range_update(U, V + 1, B);
      } else {
        ST.range_update(0, U + 1, B);
        ST.range_update(V, N, B);
      }
    }
    if (t >= 1){
      int U, V, W;
      cin >> U >> V >> W;
      U--;
      V--;
      W--;
      if (U > V){
        swap(U, V);
      }
      array<long long, 5> S;
      if (U < W && W < V){
        S = ST.range_sum(U, V + 1);
      } else {
        array<long long, 5> L = ST.range_sum(0, U + 1);
        array<long long, 5> R = ST.range_sum(V, N);
        for (int j = 0; j < 5; j++){
          S[j] = (L[j] + R[j]) % MOD;
        }
      }
      long long M = S[1] * modinv(S[0]) % MOD;
      long long ans = 0;
      for (int j = 0; j <= t; j++){
        ans += S[j] * modpow(MOD - M, t - j)* binom[t][j] % MOD;
        ans %= MOD;
      }
      ans *= modinv(S[0]);
      ans %= MOD;
      cout << ans << endl;
    }
  }
}
0