結果

問題 No.142 単なる配列の操作に関する実装問題
ユーザー koyoprokoyopro
提出日時 2015-02-03 00:25:59
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,337 bytes
コンパイル時間 767 ms
コンパイル使用メモリ 75,200 KB
実行使用メモリ 21,112 KB
最終ジャッジ日時 2023-09-02 08:53:18
合計ジャッジ時間 15,199 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ(β)

テストケース

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

ソースコード

diff #

#include<iostream>
#include<math.h>
#include<vector>
#include <array>
#include <algorithm>
#include <queue>
#include <numeric>
#include <map>

using namespace std;
#define int long long
#define FOR(i, a, b) for(int i=(a);i<(b);i++)
#define RFOR(i, a, b) for(int i=(b-1);i>=(a);i--)
#define REP(i, n) for(int i=0; i<(n); i++)
#define RREP(i, n) for(int i=(n-1); i>=0; i--)
#define ALL(a) (a).begin(),(a).end()
#define UNIQUE_SORT(l) sort(ALL(l)); l.erase(unique(ALL(l)), l.end());
#define CONTAIN(a, b) find(ALL(a), (b)) != (a).end()
#define array2(type, x, y) array<array<type, y>, x>
#define vector2(type) vector<vector<type> >
#define out(...) //printf(__VA_ARGS__)

typedef pair<int, int> pos;
int pos::*x = &pos::first;
int pos::*y = &pos::second;

int dxy[] = {0, 1, 0, -1, 0};

/*================================*/

signed main()
{
    int N,S,X,Y,Z,Q;
    cin >> N >> S >> X >> Y >> Z >> Q;
    
    vector<int> A;
    A.push_back(S);
    FOR(i,1,N+1) A.push_back((X*A[i-1]+Y)%Z);
    REP(j,N) out("%lld ", A[j]);
    out("\n");
    
    int T,U,V;
    REP(i,Q) {
        cin >> S >> T >> U >> V;
        RFOR(k,U,V+1) {
            A[k-1] += A[S-1 + k-U];
        }
        REP(j,N) out("%lld ", A[j]);
        out("\n");
    }
    REP(i,N){
        cout << ((A[i] % 2) ? 'O' : 'E');
    }
    cout << endl;
    
    return 0;
}
0