結果
問題 | No.142 単なる配列の操作に関する実装問題 |
ユーザー | beet |
提出日時 | 2021-04-05 00:31:50 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 3,165 ms / 5,000 ms |
コード長 | 1,076 bytes |
コンパイル時間 | 2,214 ms |
コンパイル使用メモリ | 207,108 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-09 07:35:41 |
合計ジャッジ時間 | 20,063 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2,507 ms
5,248 KB |
testcase_01 | AC | 3,073 ms
5,376 KB |
testcase_02 | AC | 3,165 ms
5,376 KB |
testcase_03 | AC | 2,523 ms
5,376 KB |
testcase_04 | AC | 2,873 ms
5,376 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; using Int = long long; template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;} template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;} //INSERT ABOVE HERE const int BIT=17; const int MAX=1<<BIT; const int MSK=MAX-1; using BS = bitset<MAX>; BS res[1<<(22-BIT)]; signed main(){ cin.tie(0); ios::sync_with_stdio(0); int n,s,x,y,z; cin>>n>>s>>x>>y>>z; BS all(0); for(int i=0;i<MAX;i++) all[i]=1; for(int i=0,a=s;i<n;i++){ res[i>>BIT][i&MSK]=a&1; a=(1LL*x*a+y)%z; } int q; cin>>q; for(int i=0;i<q;i++){ int a,b,c,d; cin>>a>>b>>c>>d; a--;c--; BS tmp(0); int p=((a>>BIT)+1)<<BIT; if(p<=b){ tmp|=res[a>>BIT]>>(a&MSK); tmp|=(res[p>>BIT]&(all>>(MAX-(b-p))))<<(p-a); }else{ tmp|=(res[a>>BIT]>>(a&MSK))&(all>>(MAX-(b-a))); } int q=((c>>BIT)+1)<<BIT; res[c>>BIT]^=tmp<<(c&MSK); res[q>>BIT]^=tmp>>(q-c); } for(int i=0;i<n;i++) cout<<(res[i>>BIT][i&MSK]?'O':'E'); cout<<endl; return 0; }