結果

問題 No.2702 Nand Nor Matrix
ユーザー milkcoffeemilkcoffee
提出日時 2024-08-11 17:30:31
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 5,374 bytes
コンパイル時間 4,102 ms
コンパイル使用メモリ 263,352 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-08-11 17:30:44
合計ジャッジ時間 10,755 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 AC 61 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#if __has_include(<atcoder/all>)
#include <atcoder/all>
using namespace atcoder;
#endif
using namespace std;

// #include "boost/multiprecision/cpp_int.hpp"
// using namespace boost::multiprecision;

// #pragma GCC target("avx2")
// #pragma GCC optimize("O3")
// #pragma GCC optimize("unroll-loops")

#define ll long long
#define rep(i, n) for (ll i = 0; i < n; ++i)
#define rep_up(i, a, n) for (ll i = a; i < n; ++i)
#define rep_down(i, a, n) for (ll i = a; i >= n; --i)
#define P pair<ll, ll>
#define pb push_back
#define bit_count(x) __builtin_popcountll(x)
#define gcd(a, b) __gcd(a, b)
#define lcm(a, b) a / gcd(a, b) * b
// #define endl "\n"

#define all(v) v.begin(), v.end()
#define fi first
#define se second
#define vll vector<ll>
#define vvll vector<vll>
#define vvvll vector<vvll>
#define vvvvll vector<vvvll>
#define pqll priority_queue<ll>
#define pqllg priority_queue<ll, vector<ll>, greater<ll>>

template <class T>
inline void vin(vector<T> &v) { rep(i, v.size()) cin >> v.at(i); }
template <class T>
using V = vector<T>;

constexpr ll INF = (1ll << 60);
// constexpr ll mod = 1000000007;
constexpr ll mod = 998244353;

// using mint = atcoder::modint;
using mint = atcoder::modint998244353;
// using mint = atcoder::modint1000000007;
#define vmint vector<mint>
#define vvmint vector<vmint>
#define vvvmint vector<vvmint>
#define vvvvmint vector<vvvmint>

constexpr double pi = 3.14159265358979323846;

random_device seed_gen;
mt19937 engine(seed_gen());

template <typename T>
inline bool chmax(T &a, T b)
{
    if (a < b)
    {
        a = b;
        return 1;
    }
    return 0;
}
template <typename T>
inline bool chmin(T &a, T b)
{
    if (a > b)
    {
        a = b;
        return 1;
    }
    return 0;
}
template <typename T>
void pt(T val)
{
    cout << val << "\n";
}
template <typename T>
void pt_vll(vector<T> &v)
{
    ll vs = v.size();
    rep(i, vs)
    {
        cout << v[i];

        if (i == vs - 1)
            cout << "\n";
        else
            cout << " ";
    }
}
template <typename T>
void pt_vmint(vector<T> &v)
{
    ll vs = v.size();
    rep(i, vs)
    {
        cout << v[i].val();

        if (i == vs - 1)
            cout << "\n";
        else
            cout << " ";
    }
}
ll mypow(ll a, ll n)
{
    ll ret = 1;
    if (n == 0)
        return 1;
    if (a == 0)
        return 0;
    rep(i, n)
    {
        if (ret > (ll)(9e18 + 10) / a)
            return -1;
        ret *= a;
    }
    return ret;
}
long long modpow(long long a, long long n, long long mod)
{
    long long res = 1;
    while (n > 0)
    {
        if (n & 1)
            res = res * a % mod;
        a = a * a % mod;
        n >>= 1;
    }
    return res;
}
long long modinv(long long a, long long m)
{
    long long b = m, u = 1, v = 0;
    while (b)
    {
        long long t = a / b;
        a -= t * b;
        swap(a, b);
        u -= t * v;
        swap(u, v);
    }
    u %= m;
    if (u < 0)
        u += m;
    return u;
}

void solve();
// ここまでテンプレ

int main()
{
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    // cout << fixed << setprecision(16);
    // ll T;
    // cin >> T;
    // rep(ca, T)
    solve();
}

ll nand(ll x, ll y)
{
    if (x == 1 && y == 1)
        return 0;
    return 1;
}

ll nor(ll x, ll y)
{
    if (x == 0 && y == 0)
        return 1;
    return 0;
}

void solve()
{
    ll n, m, k, cnt = 0, sum = 0, ans = 0;
    cin >> n;
    ll T = n;
    // vvvll z(T + 1, vvll(n, vll(n)));
    vll x(n);
    vll y(n);
    vin(x);
    // rep(i, n)
    // {
    //     x[0][0][i] = 0;
    // }
    y[0] = x[0];
    rep(i, n - 1)
    {
        // x[0][i + 1][0] = 0;
        cin >> y[i + 1];
    }
    // rep(i, n)
    // {
    //     z[0][0][i] = x[i];
    //     z[0][i][0] = y[i];
    // }
    // rep(t, T)
    // {
    //     rep(i, n)
    //     {
    //         rep(j, n)
    //         {
    //             cout << z[t][i][j];
    //         }
    //         cout << endl;
    //     }
    //     cout << "----" << endl;
    //     rep_up(i, 0, n)
    //     {
    //         rep_up(j, 0, n)
    //         {
    //             if (i == 0 || j == 0)
    //                 z[t + 1][i][j] = z[t][i][j];
    //             else if (z[t][i][j] == 0)
    //                 z[t + 1][i][j] = nand(z[t][i - 1][j], z[t][i][j - 1]);
    //             else
    //                 z[t + 1][i][j] = nor(z[t][i - 1][j], z[t][i][j - 1]);
    //         }
    //     }
    // }
    ll mx = n;
    ll my = n;
    rep(i, n)
    {
        if (i > 1 && x[i] == x[i - 1])
        {
            mx = i;
            break;
        }
    }
    rep(i, n)
    {
        if (i > 1 && y[i] == y[i - 1])
        {
            my = i;
            break;
        }
    }
    // pt(m);
    m--;
    ll q;
    cin >> q;
    rep(i, q)
    {
        ll t, r, c;
        cin >> t >> r >> c;
        r--;
        c--;
        if (r == 0 || c == 0)
        {
            if (r == 0)
                ans = x[c];
            else
                ans = y[r];
        }
        else if (r > mx || c > my || (r + c) > t + 1)
        {
            ans = t % 2;
        }
        else
        {
            // ans = "a");
            // pt("a");
            ll p = x[1] + r + c + 1;
            ans = p % 2;
        }
        // if (t < T)
        //     assert(ans == x[t][r][c]);
        pt(ans);
    }
}
0