結果

問題 No.142 単なる配列の操作に関する実装問題
ユーザー cielciel
提出日時 2015-05-27 21:25:11
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 1,276 ms / 5,000 ms
コード長 699 bytes
コンパイル時間 302 ms
コンパイル使用メモリ 37,888 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-06 11:15:42
合計ジャッジ時間 5,685 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 249 ms
6,812 KB
testcase_01 AC 1,053 ms
6,940 KB
testcase_02 AC 1,276 ms
6,944 KB
testcase_03 AC 242 ms
6,944 KB
testcase_04 AC 1,026 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:7:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    7 |         scanf("%d%d%d%d%d%d",&N,&S,&T,&U,&V,&Q);
      |         ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
main.cpp:16:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   16 |                 scanf("%d%d%d%d",&S,&T,&U,&V);S--,U--;
      |                 ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <vector>
#include <cstdio>
using namespace std;
typedef unsigned long long ull;
int main(){
	int N,S,T,U,V,Q;
	scanf("%d%d%d%d%d%d",&N,&S,&T,&U,&V,&Q);
	vector<ull>A((N+127)/64),B((N+127)/64);
	A[0]=S%2;
	for(int i=1;i<N;i++){
		S=((ull)T*S+U)%V;
		int y=i/64,x=i%64;
		A[i/64]|=(ull)S%2<<(i%64);
	}
	for(;Q--;){
		scanf("%d%d%d%d",&S,&T,&U,&V);S--,U--;
		int L=(T-S+63)/64;
		for(int i=0;i<L;i++){
			B[i]=A[S/64+i]>>S%64;
			if(S%64)B[i]|=A[S/64+i+1]<<(64-S%64);
		}
		if(V=(T-S)%64)B[L-1]=B[L-1]<<(64-V)>>(64-V);
		for(int i=0;i<L;i++){
			A[U/64+i]^=B[i]<<U%64;
			if(U%64)A[U/64+i+1]^=B[i]>>(64-U%64);
		}
	}
	for(int i=0;i<N;i++)putchar((A[i/64]>>(i%64)&1)?'O':'E');
	putchar('\n');
}
0