結果
問題 | No.142 単なる配列の操作に関する実装問題 |
ユーザー | maine_honzuki |
提出日時 | 2020-05-20 16:22:26 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,034 bytes |
コンパイル時間 | 1,218 ms |
コンパイル使用メモリ | 81,876 KB |
実行使用メモリ | 26,180 KB |
最終ジャッジ日時 | 2024-10-01 23:36:58 |
合計ジャッジ時間 | 13,846 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
ソースコード
#pragma GCC optimize("O3") #pragma GCC target("avx") #include <algorithm> #include <bitset> #include <iostream> #include <string> #include <vector> using namespace std; int main() { cin.tie(nullptr); ios::sync_with_stdio(false); int N, S, X, Y, Z; cin >> N >> S >> X >> Y >> Z; vector<long long> A(N); A[0] = S; for (int i = 1; i < N; i++) { (A[i] = (X * A[i - 1] + Y)) %= Z; } const int len = 2e6; bitset<len> bit, mask; for (int i = 0; i < N; i++) { bit[i] = A[i] % 2; } int Q; cin >> Q; while (Q--) { int S, T, U, V; cin >> S >> T >> U >> V; mask.set(); mask >>= (len - (T - S + 1)); mask <<= S - 1; mask &= bit; if (U > S) mask <<= U - S; else mask >>= S - U; bit ^= mask; } string ans; for (int i = 0; i < N; i++) { ans.push_back(char(bit[i] ? 'O' : 'E')); } reverse(ans.begin(), ans.end()); cout << ans << endl; }