結果

問題 No.670 log は定数
ユーザー e869120e869120
提出日時 2018-06-09 18:22:54
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,741 ms / 4,000 ms
コード長 849 bytes
コンパイル時間 667 ms
コンパイル使用メモリ 71,992 KB
実行使用メモリ 240,596 KB
最終ジャッジ日時 2024-06-30 12:58:02
合計ジャッジ時間 20,194 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,710 ms
239,996 KB
testcase_01 AC 1,719 ms
240,060 KB
testcase_02 AC 1,713 ms
240,596 KB
testcase_03 AC 1,724 ms
240,312 KB
testcase_04 AC 1,710 ms
239,756 KB
testcase_05 AC 1,730 ms
239,956 KB
testcase_06 AC 1,692 ms
240,452 KB
testcase_07 AC 1,715 ms
239,828 KB
testcase_08 AC 1,713 ms
239,864 KB
testcase_09 AC 1,741 ms
239,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
using namespace std;

unsigned long long seed;

int Next() {
	seed = seed ^ (seed << 13);
	seed = seed ^ (seed >> 7);
	seed = seed ^ (seed << 17);
	return (seed >> 33);
}

void Fill(int rep) {
	for (int i = 0; i < rep; i++) Next();
}

const int P = 23;
int N, Q, A[20000009], B[1 << P]; vector<int>vec[1 << P];

int main() {
	cin >> N >> Q >> seed;
	Fill(10000);
	for (int i = 0; i < N; i++) {
		A[i] = Next();
		B[(A[i] >> (31 - P)) + 1]++;
		vec[(A[i] >> (31 - P))].push_back(A[i]);
	}
	for (int i = 1; i < (1 << P); i++) B[i] += B[i - 1];

	long long ret = 0;
	for (int i = 1; i <= Q; i++) {
		int x = Next();
		int sum = B[x >> (31 - P)];
		for (int j = 0; j < vec[x >> (31 - P)].size(); j++) {
			if (vec[x >> (31 - P)][j] < x) sum++;
		}
		ret ^= 1LL * (i - 1) * sum;
	}
	cout << ret << endl;
	return 0;
}
0