結果
問題 |
No.142 単なる配列の操作に関する実装問題
|
ユーザー |
![]() |
提出日時 | 2021-04-05 00:27:10 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,082 bytes |
コンパイル時間 | 2,209 ms |
コンパイル使用メモリ | 197,984 KB |
最終ジャッジ日時 | 2025-01-20 11:47:58 |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | WA * 5 |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:17:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 17 | scanf("%d %d %d %d %d",&n,&s,&x,&y,&z); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ main.cpp:27:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 27 | scanf("%d",&q); | ~~~~~^~~~~~~~~ main.cpp:30:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 30 | scanf("%d %d %d %d",&a,&b,&c,&d); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~
ソースコード
#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=16; const int MAX=1<<BIT; const int MSK=MAX-1; using BS = bitset<MAX>; BS res[1<<(22-BIT)]; signed main(){ int n,s,x,y,z; scanf("%d %d %d %d %d",&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; scanf("%d",&q); for(int i=0;i<q;i++){ int a,b,c,d; scanf("%d %d %d %d",&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++) printf("%c",res[i>>BIT][i&MSK]?'O':'E'); puts(""); return 0; }