結果

問題 No.2702 Nand Nor Matrix
ユーザー MagentorMagentor
提出日時 2024-03-11 22:02:43
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 320 ms / 2,000 ms
コード長 1,608 bytes
コンパイル時間 1,065 ms
コンパイル使用メモリ 89,520 KB
実行使用メモリ 7,964 KB
最終ジャッジ日時 2024-09-29 22:05:58
合計ジャッジ時間 17,637 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 266 ms
5,248 KB
testcase_02 AC 263 ms
5,248 KB
testcase_03 AC 291 ms
5,248 KB
testcase_04 AC 268 ms
5,248 KB
testcase_05 AC 266 ms
5,248 KB
testcase_06 AC 276 ms
5,248 KB
testcase_07 AC 263 ms
5,248 KB
testcase_08 AC 262 ms
5,248 KB
testcase_09 AC 272 ms
5,248 KB
testcase_10 AC 269 ms
5,248 KB
testcase_11 AC 265 ms
5,248 KB
testcase_12 AC 262 ms
5,248 KB
testcase_13 AC 266 ms
5,248 KB
testcase_14 AC 251 ms
5,248 KB
testcase_15 AC 260 ms
5,248 KB
testcase_16 AC 203 ms
5,872 KB
testcase_17 AC 64 ms
7,296 KB
testcase_18 AC 164 ms
5,248 KB
testcase_19 AC 287 ms
5,248 KB
testcase_20 AC 69 ms
6,772 KB
testcase_21 AC 127 ms
5,248 KB
testcase_22 AC 87 ms
5,248 KB
testcase_23 AC 257 ms
5,248 KB
testcase_24 AC 200 ms
7,552 KB
testcase_25 AC 110 ms
5,248 KB
testcase_26 AC 133 ms
5,376 KB
testcase_27 AC 296 ms
6,336 KB
testcase_28 AC 234 ms
5,248 KB
testcase_29 AC 24 ms
5,248 KB
testcase_30 AC 267 ms
7,696 KB
testcase_31 AC 270 ms
5,248 KB
testcase_32 AC 11 ms
5,248 KB
testcase_33 AC 46 ms
6,428 KB
testcase_34 AC 232 ms
5,248 KB
testcase_35 AC 257 ms
5,760 KB
testcase_36 AC 315 ms
7,828 KB
testcase_37 AC 307 ms
7,832 KB
testcase_38 AC 309 ms
7,832 KB
testcase_39 AC 302 ms
7,828 KB
testcase_40 AC 302 ms
7,960 KB
testcase_41 AC 308 ms
7,960 KB
testcase_42 AC 303 ms
7,956 KB
testcase_43 AC 307 ms
7,832 KB
testcase_44 AC 313 ms
7,832 KB
testcase_45 AC 317 ms
7,832 KB
testcase_46 AC 309 ms
7,964 KB
testcase_47 AC 303 ms
7,832 KB
testcase_48 AC 305 ms
7,836 KB
testcase_49 AC 320 ms
7,828 KB
testcase_50 AC 300 ms
7,832 KB
testcase_51 AC 276 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
using namespace std;
#define int long long

signed main() {
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);
    int N;
    cin >> N;
    vector<int> A(N), B(N);
    for (int i = 0; i < N; ++i)
        cin >> A[i];
    A.push_back(A.back());
    B[0] = A[0];
    for (int i = 1; i < N; ++i)
        cin >> B[i];
    B.push_back(B.back());
    int col = 0;
    for (int i = 1; i < N; ++i) {
        if (A[i] == A[i + 1]) {
            col = i;
            break;
        }
    }
    int row = 0;
    for (int i = 1; i < N; ++i) {
        if (B[i] == B[i + 1]) {
            row = i;
            break;
        }
    }
    if (A[1] != B[1]) {
        row = 0;
        col = 0;
    }
    int change = 0;
    if (A[1] == B[1] && A[1] == 0) {
        for (int i = 0; i <= N; ++i) {
            A[i] ^= 1;
            B[i] ^= 1;
        }
        change = 1;
    }
    int Q;
    cin >> Q;
    for (int i = 0; i < Q; ++i) {
        int T, R, C;
        cin >> T >> R >> C;
        --R;
        --C;
        T -= change;
        if (R == 0) {
            cout << (A[C] ^ change) << endl;
            continue;
        }
        if (C == 0) {
            cout << (B[R] ^ change) << endl;
            continue;
        }
        if (T <= 0) {
            cout << ((T & 1) ^ change) << endl;
            continue;
        }
        if (R <= row && C <= col && R + C - 1 <= T) {
            cout << (((R + C) & 1) ^ change) << endl;
            continue;
        } else {
            cout << ((T & 1) ^ change) << endl;
            continue;
        }
    }
    return 0;
}
0