結果

問題 No.670 log は定数
ユーザー %20%20
提出日時 2018-04-24 00:11:00
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,918 ms / 4,000 ms
コード長 459 bytes
コンパイル時間 1,986 ms
コンパイル使用メモリ 203,028 KB
実行使用メモリ 266,444 KB
最終ジャッジ日時 2024-06-27 14:22:56
合計ジャッジ時間 23,607 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,918 ms
266,368 KB
testcase_01 AC 1,875 ms
266,368 KB
testcase_02 AC 1,912 ms
266,368 KB
testcase_03 AC 1,899 ms
266,368 KB
testcase_04 AC 1,893 ms
266,368 KB
testcase_05 AC 1,911 ms
266,368 KB
testcase_06 AC 1,893 ms
266,444 KB
testcase_07 AC 1,899 ms
266,320 KB
testcase_08 AC 1,904 ms
266,320 KB
testcase_09 AC 1,885 ms
266,368 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:9:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    9 | main(){
      | ^~~~

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
typedef unsigned long long ull;
ull s;
int X(){
	return(((s^=s<<13)^=s>>7)^=s<<17)>>33;
}
int a[200000],b[1<<26];
main(){
	int N,Q,d;
	cin>>N>>Q>>s;
	for(int i=0;i<10000;++i){
		X();
	}
	for(int i=0;i<N;++i){
		++b[((a[i]=X())>>5)+1];
	}
	sort(a,a+N);
	for(int i=0;i<(1<<26)-1;++i){
		b[i+1]+=b[i];
	}
	ull z=0;
	for(ull i=0;i<Q;++i){
		int x=X();
		z^=(lower_bound(a+b[x>>5],a+b[(x>>5)+1],x)-a)*i;
	}
	cout<<z;
}
0