結果

問題 No.1891 Static Xor Range Composite Query
ユーザー ygussanyygussany
提出日時 2022-04-04 18:51:43
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 681 ms / 5,000 ms
コード長 1,251 bytes
コンパイル時間 338 ms
コンパイル使用メモリ 31,232 KB
実行使用メモリ 42,752 KB
最終ジャッジ日時 2024-05-04 04:17:33
合計ジャッジ時間 10,511 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 3 ms
5,376 KB
testcase_14 AC 3 ms
5,376 KB
testcase_15 AC 3 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 3 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 3 ms
5,376 KB
testcase_20 AC 3 ms
5,376 KB
testcase_21 AC 681 ms
42,752 KB
testcase_22 AC 678 ms
42,752 KB
testcase_23 AC 675 ms
42,752 KB
testcase_24 AC 672 ms
42,624 KB
testcase_25 AC 680 ms
42,752 KB
testcase_26 AC 679 ms
42,624 KB
testcase_27 AC 679 ms
42,624 KB
testcase_28 AC 680 ms
42,752 KB
testcase_29 AC 676 ms
42,752 KB
testcase_30 AC 681 ms
42,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

const int Mod = 998244353, bit[20] = {1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768, 65536, 131072, 262144, 524288};
int memo[262144][19][2], a[262144], b[262144];

int recursion(int l, int k, int x)
{
	if (memo[l][k][0] >= 0) return ((long long)memo[l][k][0] * x + memo[l][k][1]) % Mod;
	else if (k == 0) {
		memo[l][k][0] = a[l];
		memo[l][k][1] = b[l];
		return ((long long)a[l] * x + b[l]) % Mod;
	}
	x = recursion(l, k - 1, x);
	x = recursion(l ^ bit[k-1], k - 1, x);
	memo[l][k][0] = (long long)memo[l][k-1][0] * memo[l ^ bit[k-1]][k-1][0] % Mod;
	memo[l][k][1] = ((long long)memo[l ^ bit[k-1]][k-1][0] * memo[l][k-1][1] + memo[l ^ bit[k-1]][k-1][1]) % Mod;
	return x;
}

int solve(int l, int r, int p, int x)
{
	if (l == r) return x;
	
	int i;
	for (i = 1; (l & bit[i-1]) == 0 && l + bit[i] <= r; i++);
	return solve(l + bit[i-1], r, p, recursion(l ^ p, i - 1, x));
}

int main()
{
	int i, N, Q;
	scanf("%d %d", &N, &Q);
	for (i = 0; i < N; i++) scanf("%d %d", &(a[i]), &(b[i]));
	
	int l, r, p, x;
	for (l = 0; l < N; l++) for (i = 0; bit[i] <= N; i++) memo[l][i][0] = -1;
	for (i = 1; i <= Q; i++) {
		scanf("%d %d %d %d", &l, &r, &p, &x);
		printf("%d\n", solve(l, r, p, x));
	}
	return 0;
}
0