結果
問題 | No.142 単なる配列の操作に関する実装問題 |
ユーザー | ciel |
提出日時 | 2015-05-27 21:34:08 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 1,340 ms / 5,000 ms |
コード長 | 560 bytes |
コンパイル時間 | 422 ms |
コンパイル使用メモリ | 38,016 KB |
実行使用メモリ | 6,940 KB |
最終ジャッジ日時 | 2024-07-06 11:16:16 |
合計ジャッジ時間 | 5,653 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 254 ms
6,816 KB |
testcase_01 | AC | 1,057 ms
6,940 KB |
testcase_02 | AC | 1,340 ms
6,940 KB |
testcase_03 | AC | 245 ms
6,940 KB |
testcase_04 | AC | 1,049 ms
6,940 KB |
コンパイルメッセージ
main.cpp:1:2: warning: #import is a deprecated GCC extension [-Wdeprecated] 1 | #import<vector> | ^~~~~~ main.cpp:2:2: warning: #import is a deprecated GCC extension [-Wdeprecated] 2 | #import<cstdio> | ^~~~~~ main.cpp: In function ‘int main()’: main.cpp:5:6: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 5 | scanf("%d%d%d%d%d%d",&N,&S,&T,&U,&L,&Q); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ main.cpp:9:18: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 9 | for(scanf("%d%d%d%d",&S,&T,&U,&L),S--,U--,L=(T-S+63)/w,i=0;i<L;i++)if(B[i]=A[S/w+i]>>S%w,S%w)B[i]|=A[S/w+i+1]<<w-S%w; | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
ソースコード
#import<vector> #import<cstdio> using namespace std;typedef unsigned long long ull;int main(){ int i=1,N,S,T,U,L,Q,w=64; scanf("%d%d%d%d%d%d",&N,&S,&T,&U,&L,&Q); vector<ull>A((N+127)/w),B((N+127)/w); for(A[0]=S%2;i<N;i++)S=((ull)T*S+U)%L,A[i/w]|=(ull)S%2<<i%w; for(;Q--;){ for(scanf("%d%d%d%d",&S,&T,&U,&L),S--,U--,L=(T-S+63)/w,i=0;i<L;i++)if(B[i]=A[S/w+i]>>S%w,S%w)B[i]|=A[S/w+i+1]<<w-S%w; if(T=(T-S)%w)B[L-1]=B[L-1]<<w-T>>w-T; for(i=0;i<L;i++)if(A[U/w+i]^=B[i]<<U%w,U%w)A[U/w+i+1]^=B[i]>>w-U%w; } for(i=0;i<N;i++)putchar(A[i/w]>>i%w&1?79:69);putchar(10);}