結果

問題 No.142 単なる配列の操作に関する実装問題
ユーザー otsnskotsnsk
提出日時 2015-02-05 15:13:05
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,027 bytes
コンパイル時間 531 ms
コンパイル使用メモリ 66,564 KB
実行使用メモリ 18,832 KB
最終ジャッジ日時 2023-09-05 12:53:04
合計ジャッジ時間 17,622 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 TLE -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
}
0