結果
問題 | No.142 単なる配列の操作に関する実装問題 |
ユーザー | otsnsk |
提出日時 | 2015-02-05 15:13:05 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,027 bytes |
コンパイル時間 | 528 ms |
コンパイル使用メモリ | 66,560 KB |
実行使用メモリ | 23,808 KB |
最終ジャッジ日時 | 2024-06-23 08:32:49 |
合計ジャッジ時間 | 17,899 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | TLE | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <cmath> #define FORR(i,b,e) for(int i=(b);i<(int)(e);++i) #define FOR(i,e) FORR(i,0,e) #define sortuniq(v) sort(v.begin(), v.end()), v.erase(unique(v.begin(),v.end()),v.end()) #define dump(var) cerr << #var ": " << var << "\n" #define dumpc(con) for(auto& e: con) cerr << e << " "; cerr<<"\n" typedef long long ll; typedef unsigned long long ull; const double EPS = 1e-6; const int d4[] = {0, -1, 0, 1, 0}; using namespace std; int N, S, X, Y, Z, Q; int main() { cin.tie(0); ios::sync_with_stdio(false); cin >> N >> S >> X >> Y >> Z >> Q; vector<int> A(N); A[0] = S; FORR(i, 1, N) { A[i] = (X * A[i-1] + Y) % Z; } FOR(i, N) A[i] = A[i] & 1; vector<int> a(N); FOR(i, Q) { int s, t, u, v; cin >> s >> t >> u >> v; FOR(j, t-s+1) a[j] = A[s-1+j] ^ A[u-1+j]; FOR(j, t-s+1) A[u-1+j] = a[j]; } FOR(i, N) cout << (A[i]? 'O': 'E'); cout << endl; return 0; }