結果

問題 No.670 log は定数
ユーザー %20%20
提出日時 2018-04-24 00:33:21
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,242 ms / 4,000 ms
コード長 459 bytes
コンパイル時間 2,657 ms
コンパイル使用メモリ 202,996 KB
実行使用メモリ 36,992 KB
最終ジャッジ日時 2024-06-27 15:36:08
合計ジャッジ時間 15,367 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,134 ms
36,992 KB
testcase_01 AC 1,134 ms
36,864 KB
testcase_02 AC 1,128 ms
36,992 KB
testcase_03 AC 1,117 ms
36,864 KB
testcase_04 AC 1,140 ms
36,992 KB
testcase_05 AC 1,169 ms
36,992 KB
testcase_06 AC 1,185 ms
36,864 KB
testcase_07 AC 1,163 ms
36,992 KB
testcase_08 AC 1,139 ms
36,864 KB
testcase_09 AC 1,242 ms
36,864 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<<23];
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())>>8)+1];
	}
	sort(a,a+N);
	for(int i=0;i<(1<<23)-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>>8],a+b[(x>>8)+1],x)-a)*i;
	}
	cout<<z;
}
0