結果

問題 No.1891 Static Xor Range Composite Query
ユーザー SSRSSSRS
提出日時 2022-04-04 17:31:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 731 bytes
コンパイル時間 3,469 ms
コンパイル使用メモリ 220,208 KB
実行使用メモリ 14,220 KB
最終ジャッジ日時 2024-11-25 09:19:35
合計ジャッジ時間 67,640 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
14,112 KB
testcase_01 AC 2 ms
13,632 KB
testcase_02 AC 2 ms
14,148 KB
testcase_03 AC 2 ms
14,172 KB
testcase_04 AC 2 ms
14,200 KB
testcase_05 AC 2 ms
14,164 KB
testcase_06 AC 2 ms
13,996 KB
testcase_07 AC 2 ms
14,220 KB
testcase_08 AC 2 ms
14,000 KB
testcase_09 AC 2 ms
14,000 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 7 ms
6,816 KB
testcase_12 AC 7 ms
6,816 KB
testcase_13 AC 7 ms
6,816 KB
testcase_14 AC 7 ms
6,820 KB
testcase_15 AC 7 ms
6,816 KB
testcase_16 AC 7 ms
6,816 KB
testcase_17 AC 7 ms
6,816 KB
testcase_18 AC 7 ms
6,820 KB
testcase_19 AC 7 ms
6,820 KB
testcase_20 AC 6 ms
6,820 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
#include <bits/stdc++.h>
using namespace std;
const long long MOD = 998244353;
struct linear{
  long long a, b;
  linear(){
    a = 1;
    b = 0;
  }
  linear(int a, int b): a(a), b(b){
  }
};
int value(linear A, int x){
  return (A.a * x + A.b) % MOD;
}
int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  int N, Q;
  cin >> N >> Q;
  vector<linear> f(N);
  for (int i = 0; i < N; i++){
    int a, b;
    cin >> a >> b;
    f[i] = linear(a, b);
  }
  for (int i = 0; i < Q; i++){
    int l, r, p, x;
    cin >> l >> r >> p >> x;
    for (int j = l; j < r; j++){
      x = value(f[j ^ p], x);
    }
    cout << x << "\n";
  }
}
0