結果

問題 No.2592 おでぶなおばけさん 2
ユーザー t98slidert98slider
提出日時 2023-12-20 02:41:40
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 5,718 bytes
コンパイル時間 2,450 ms
コンパイル使用メモリ 211,248 KB
実行使用メモリ 6,676 KB
最終ジャッジ日時 2023-12-20 02:41:52
合計ジャッジ時間 11,116 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,676 KB
testcase_01 AC 9 ms
6,676 KB
testcase_02 AC 16 ms
6,676 KB
testcase_03 AC 8 ms
6,676 KB
testcase_04 AC 9 ms
6,676 KB
testcase_05 AC 23 ms
6,676 KB
testcase_06 AC 17 ms
6,676 KB
testcase_07 AC 22 ms
6,676 KB
testcase_08 AC 19 ms
6,676 KB
testcase_09 AC 7 ms
6,676 KB
testcase_10 AC 12 ms
6,676 KB
testcase_11 AC 20 ms
6,676 KB
testcase_12 AC 5 ms
6,676 KB
testcase_13 AC 39 ms
6,676 KB
testcase_14 AC 39 ms
6,676 KB
testcase_15 AC 32 ms
6,676 KB
testcase_16 AC 37 ms
6,676 KB
testcase_17 AC 40 ms
6,676 KB
testcase_18 AC 31 ms
6,676 KB
testcase_19 AC 28 ms
6,676 KB
testcase_20 AC 27 ms
6,676 KB
testcase_21 AC 25 ms
6,676 KB
testcase_22 AC 30 ms
6,676 KB
testcase_23 AC 42 ms
6,676 KB
testcase_24 AC 35 ms
6,676 KB
testcase_25 AC 26 ms
6,676 KB
testcase_26 AC 27 ms
6,676 KB
testcase_27 AC 47 ms
6,676 KB
testcase_28 AC 48 ms
6,676 KB
testcase_29 AC 46 ms
6,676 KB
testcase_30 AC 46 ms
6,676 KB
testcase_31 AC 57 ms
6,676 KB
testcase_32 AC 44 ms
6,676 KB
testcase_33 AC 45 ms
6,676 KB
testcase_34 AC 44 ms
6,676 KB
testcase_35 AC 45 ms
6,676 KB
testcase_36 AC 48 ms
6,676 KB
testcase_37 AC 48 ms
6,676 KB
testcase_38 AC 48 ms
6,676 KB
testcase_39 AC 48 ms
6,676 KB
testcase_40 AC 48 ms
6,676 KB
testcase_41 AC 48 ms
6,676 KB
testcase_42 AC 46 ms
6,676 KB
testcase_43 AC 46 ms
6,676 KB
testcase_44 AC 44 ms
6,676 KB
testcase_45 AC 48 ms
6,676 KB
testcase_46 AC 44 ms
6,676 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 AC 47 ms
6,676 KB
testcase_53 AC 47 ms
6,676 KB
testcase_54 AC 47 ms
6,676 KB
testcase_55 AC 46 ms
6,676 KB
testcase_56 AC 45 ms
6,676 KB
testcase_57 WA -
testcase_58 AC 46 ms
6,676 KB
testcase_59 AC 45 ms
6,676 KB
testcase_60 AC 45 ms
6,676 KB
testcase_61 AC 45 ms
6,676 KB
testcase_62 AC 47 ms
6,676 KB
testcase_63 AC 47 ms
6,676 KB
testcase_64 AC 45 ms
6,676 KB
testcase_65 AC 42 ms
6,676 KB
testcase_66 AC 41 ms
6,676 KB
testcase_67 AC 41 ms
6,676 KB
testcase_68 AC 44 ms
6,676 KB
testcase_69 AC 41 ms
6,676 KB
testcase_70 AC 41 ms
6,676 KB
testcase_71 AC 41 ms
6,676 KB
testcase_72 AC 41 ms
6,676 KB
testcase_73 AC 42 ms
6,676 KB
testcase_74 AC 44 ms
6,676 KB
testcase_75 AC 43 ms
6,676 KB
testcase_76 AC 45 ms
6,676 KB
testcase_77 AC 44 ms
6,676 KB
testcase_78 AC 46 ms
6,676 KB
testcase_79 AC 45 ms
6,676 KB
testcase_80 AC 64 ms
6,676 KB
testcase_81 AC 44 ms
6,676 KB
testcase_82 AC 44 ms
6,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

//mint61 a;のように宣言する
template<const long long MOD = 2305843009213693951, 
        const long long MASK31 = (1ll << 31) - 1, const long long MASK30 = (1ll << 30) - 1>
struct modint61 {
    using mint = modint61;
    long long v;
    modint61() : v(0) {}
    template<class T> modint61(T x) { 
        while(x < 0) x += MOD;
        while(x >= MOD) x -= MOD;
        v = x;
    }
    long long safe_mod(long long x){
        x = (x >> 61) + (x & MOD);
        if (x >= MOD) x -= MOD;
        return x;
    }
    static constexpr long long mod() { return MOD; }
    mint& operator++() {v++; if(v == MOD)v = 0; return *this;}
    mint& operator--() {if(v == 0)v = MOD; v--; return *this;}
    mint operator++(int) { mint result = *this; ++*this; return result; }
    mint operator--(int) { mint result = *this; --*this; return result; }
    mint& operator+=(const mint& rhs) { v += rhs.v; if(v >= MOD) v -= MOD; return *this; }
    mint& operator-=(const mint& rhs) { if(v < rhs.v) v += MOD; v -= rhs.v; return *this; }
    mint& operator*=(const mint& rhs) {
        long long u = v >> 31, d = v & MASK31;
        long long ru = rhs.v >> 31, rd = rhs.v & MASK31;
        long long mid = d * ru + u * rd;
        v = safe_mod(u * ru * 2 + (mid >> 30) + ((mid & MASK30) << 31) + d * rd);
        return *this;
    }
    mint& operator/=(const mint& rhs) { return *this = *this * rhs.inv(); }
    mint operator+() const { return *this; }
    mint operator-() const { return mint() - *this; }
    mint pow(long long n) const {
        assert(0 <= n);
        mint r = 1, x = *this;
        while (n) {
            if (n & 1) r *= x;
            x *= x;
            n >>= 1;
        }
        return r;
    }
    mint inv() const { assert(v); return pow(MOD - 2); }
    friend mint operator+(const mint& lhs, const mint& rhs) { return mint(lhs) += rhs; }
    friend mint operator-(const mint& lhs, const mint& rhs) { return mint(lhs) -= rhs; }
    friend mint operator*(const mint& lhs, const mint& rhs) { return mint(lhs) *= rhs; }
    friend mint operator/(const mint& lhs, const mint& rhs) { return mint(lhs) /= rhs; }
    friend bool operator<(const mint& lhs, const mint& rhs) { return lhs.v < rhs.v; }
    friend bool operator==(const mint& lhs, const mint& rhs) { return (lhs.v == rhs.v); }
    friend bool operator!=(const mint& lhs, const mint& rhs) { return (lhs.v != rhs.v); }
    friend std::istream& operator >> (std::istream& is, mint& rhs) noexcept {
        long long tmp;
        rhs = mint{(is >> tmp, tmp)};
        return is;
    }
    friend std::ostream& operator << (std::ostream &os, const mint& rhs) noexcept { return os << rhs.v; }
};
using mint61 = modint61<2305843009213693951>;

template<const unsigned int MOD> struct prime_modint {
    using mint = prime_modint;
    unsigned int v;
    prime_modint() : v(0) {}
    prime_modint(unsigned int a) { a %= MOD; v = a; }
    prime_modint(unsigned long long a) { a %= MOD; v = a; }
    prime_modint(int a) { a %= (int)(MOD); if(a < 0)a += MOD; v = a; }
    prime_modint(long long a) { a %= (int)(MOD); if(a < 0)a += MOD; v = a; }
    static constexpr int mod() { return MOD; }
    mint& operator++() {v++; if(v == MOD)v = 0; return *this;}
    mint& operator--() {if(v == 0)v = MOD; v--; return *this;}
    mint operator++(int) { mint result = *this; ++*this; return result; }
    mint operator--(int) { mint result = *this; --*this; return result; }
    mint& operator+=(const mint& rhs) { v += rhs.v; if(v >= MOD) v -= MOD; return *this; }
    mint& operator-=(const mint& rhs) { if(v < rhs.v) v += MOD; v -= rhs.v; return *this; }
    mint& operator*=(const mint& rhs) {
        v = (unsigned int)((unsigned long long)(v) * rhs.v % MOD);
        return *this;
    }
    mint& operator/=(const mint& rhs) { return *this = *this * rhs.inv(); }
    mint operator+() const { return *this; }
    mint operator-() const { return mint() - *this; }
    mint pow(long long n) const {
        assert(0 <= n);
        mint r = 1, x = *this;
        while (n) {
            if (n & 1) r *= x;
            x *= x;
            n >>= 1;
        }
        return r;
    }
    mint inv() const { assert(v); return pow(MOD - 2); }
    friend mint operator+(const mint& lhs, const mint& rhs) { return mint(lhs) += rhs; }
    friend mint operator-(const mint& lhs, const mint& rhs) { return mint(lhs) -= rhs; }
    friend mint operator*(const mint& lhs, const mint& rhs) { return mint(lhs) *= rhs; }
    friend mint operator/(const mint& lhs, const mint& rhs) { return mint(lhs) /= rhs; }
    friend bool operator==(const mint& lhs, const mint& rhs) { return (lhs.v == rhs.v); }
    friend bool operator!=(const mint& lhs, const mint& rhs) { return (lhs.v != rhs.v); }
    friend std::ostream& operator << (std::ostream &os, const mint& rhs) noexcept { return os << rhs.v; }
};
using mint1 = prime_modint<1000000007>;
using mint2 = prime_modint<998244353>;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    ll n, q, k, l, r;
    cin >> n >> q >> k;
    vector<tuple<mint61,mint1,mint2>> s(n + 1);
    tuple<mint61,mint1,mint2> BASE = {k, k, k}, d = {1, 1, 1};
    vector<ll> a(n);
    for(int i = 0; i < n; i++){
        cin >> a[i];
        get<0>(s[i + 1]) = get<0>(s[i]) + a[i] * get<0>(d);
        get<1>(s[i + 1]) = get<1>(s[i]) + a[i] * get<1>(d);
        get<2>(s[i + 1]) = get<2>(s[i]) + a[i] * get<2>(d);
        get<0>(d) *= get<0>(BASE);
        get<1>(d) *= get<1>(BASE);
        get<2>(d) *= get<2>(BASE);
    }
    while(q--){
        cin >> l >> r;
        cout << (((r - l - 1 & 1) && a[r - 1] != 0) || s[r] != s[l - 1] ? "Yes" : "No") << '\n';
    }
}
0