結果

問題 No.2592 おでぶなおばけさん 2
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-12-26 20:20:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,591 ms / 2,500 ms
コード長 2,242 bytes
コンパイル時間 394 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 115,904 KB
最終ジャッジ日時 2024-09-27 15:15:47
合計ジャッジ時間 111,326 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
57,400 KB
testcase_01 AC 218 ms
92,428 KB
testcase_02 AC 619 ms
88,240 KB
testcase_03 AC 344 ms
83,148 KB
testcase_04 AC 387 ms
81,160 KB
testcase_05 AC 557 ms
108,428 KB
testcase_06 AC 519 ms
92,028 KB
testcase_07 AC 718 ms
91,784 KB
testcase_08 AC 526 ms
94,696 KB
testcase_09 AC 285 ms
85,496 KB
testcase_10 AC 404 ms
80,092 KB
testcase_11 AC 505 ms
94,624 KB
testcase_12 AC 225 ms
83,268 KB
testcase_13 AC 1,364 ms
95,048 KB
testcase_14 AC 1,371 ms
95,528 KB
testcase_15 AC 1,234 ms
93,492 KB
testcase_16 AC 1,359 ms
96,004 KB
testcase_17 AC 1,440 ms
110,512 KB
testcase_18 AC 1,243 ms
93,520 KB
testcase_19 AC 1,130 ms
87,164 KB
testcase_20 AC 1,167 ms
92,700 KB
testcase_21 AC 1,026 ms
86,940 KB
testcase_22 AC 1,319 ms
105,340 KB
testcase_23 AC 1,446 ms
110,548 KB
testcase_24 AC 1,316 ms
93,956 KB
testcase_25 AC 1,053 ms
85,872 KB
testcase_26 AC 1,052 ms
86,268 KB
testcase_27 AC 1,537 ms
114,660 KB
testcase_28 AC 1,541 ms
114,500 KB
testcase_29 AC 1,543 ms
115,288 KB
testcase_30 AC 1,564 ms
114,788 KB
testcase_31 AC 1,548 ms
114,932 KB
testcase_32 AC 1,571 ms
114,612 KB
testcase_33 AC 1,548 ms
115,904 KB
testcase_34 AC 1,495 ms
114,148 KB
testcase_35 AC 1,522 ms
113,508 KB
testcase_36 AC 1,536 ms
114,516 KB
testcase_37 AC 1,370 ms
114,300 KB
testcase_38 AC 1,387 ms
114,152 KB
testcase_39 AC 1,392 ms
114,044 KB
testcase_40 AC 1,373 ms
114,788 KB
testcase_41 AC 1,377 ms
113,912 KB
testcase_42 AC 1,397 ms
114,180 KB
testcase_43 AC 1,540 ms
113,916 KB
testcase_44 AC 1,532 ms
113,900 KB
testcase_45 AC 1,524 ms
114,412 KB
testcase_46 AC 1,503 ms
113,916 KB
testcase_47 AC 1,451 ms
107,980 KB
testcase_48 AC 1,467 ms
108,152 KB
testcase_49 AC 1,467 ms
108,016 KB
testcase_50 AC 1,591 ms
108,284 KB
testcase_51 AC 1,472 ms
108,536 KB
testcase_52 AC 1,388 ms
113,268 KB
testcase_53 AC 1,371 ms
113,404 KB
testcase_54 AC 1,368 ms
113,264 KB
testcase_55 AC 1,383 ms
113,148 KB
testcase_56 AC 1,382 ms
113,380 KB
testcase_57 AC 144 ms
102,524 KB
testcase_58 AC 1,568 ms
114,144 KB
testcase_59 AC 1,560 ms
114,420 KB
testcase_60 AC 1,538 ms
114,668 KB
testcase_61 AC 1,530 ms
115,312 KB
testcase_62 AC 1,549 ms
114,788 KB
testcase_63 AC 1,555 ms
114,936 KB
testcase_64 AC 1,532 ms
114,420 KB
testcase_65 AC 1,519 ms
114,116 KB
testcase_66 AC 1,546 ms
113,472 KB
testcase_67 AC 1,510 ms
108,072 KB
testcase_68 AC 1,530 ms
113,600 KB
testcase_69 AC 1,532 ms
108,840 KB
testcase_70 AC 1,534 ms
114,132 KB
testcase_71 AC 1,560 ms
114,260 KB
testcase_72 AC 1,512 ms
114,536 KB
testcase_73 AC 1,522 ms
113,628 KB
testcase_74 AC 49 ms
56,264 KB
testcase_75 AC 1,551 ms
114,160 KB
testcase_76 AC 1,552 ms
114,172 KB
testcase_77 AC 1,529 ms
114,148 KB
testcase_78 AC 1,559 ms
114,804 KB
testcase_79 AC 1,534 ms
113,516 KB
testcase_80 AC 1,570 ms
114,472 KB
testcase_81 AC 1,558 ms
114,012 KB
testcase_82 AC 1,542 ms
114,440 KB
testcase_83 AC 1,558 ms
114,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline


class SegTree:
    """
    Segment Tree
    """

    def __init__(self, init_val, segfunc, ide_ele):
        """
        初期化

        init_val: 配列の初期値
        """
        n = len(init_val)
        self.segfunc = segfunc
        self.ide_ele = ide_ele
        self.num = 1 << (n - 1).bit_length()
        self.tree = [ide_ele] * 2 * self.num
        # 配列の値を葉にセット
        for i in range(n):
            self.tree[self.num + i] = init_val[i]
        # 構築していく
        for i in range(self.num - 1, 0, -1):
            self.tree[i] = segfunc(self.tree[2 * i], self.tree[2 * i + 1])

    def update(self, k, x):
        """
        k番目の値をxに更新

        k: index(0-index)
        x: update value
        """
        k += self.num
        self.tree[k] = x
        while k > 1:
            tk = k>>1
            self.tree[tk] = self.segfunc(self.tree[tk<<1], self.tree[(tk<<1)+1])
            k >>= 1

    def query(self, l, r):
        """
        [l, r)のsegfuncしたものを得る

        l: index(0-index)
        r: index(0-index)
        """
        res_l = self.ide_ele
        res_r = self.ide_ele
        
        l += self.num
        r += self.num
        while l < r:
            if l & 1:
                res_l = self.segfunc(res_l, self.tree[l])
                l += 1
            if r & 1:
                res_r = self.segfunc(self.tree[r - 1], res_r)
            l >>= 1
            r >>= 1
        res = self.segfunc(res_l,res_r)
        return res
    

N,Q,k = map(int,input().split())
A = list(map(int,input().split()))

mods = [998244353, 
        10**9 + 7,
        897581057]
m0,m1,m2 = mods

ide_ele = (0,0,0,0)
def f(x,y):


    x0,x1,x2,l0 = x
    y0,y1,y2,r0 = y

    z0 = (x0 + y0*pow(k,l0,m0))%m0
    z1 = (x1 + y1*pow(k,l0,m1))%m1
    z2 = (x2 + y2*pow(k,l0,m2))%m2

    return (z0,z1,z2,l0+r0)

T = SegTree([(a,a,a,1) for a in A],f,ide_ele)
for _ in range(Q):

    l,r = map(int,input().split())
    l -= 1
    v0,v1,v2,__ = T.query(l,r)
    if max(v0,v1,v2)>0:
        print('Yes')
    else:
        print('No')
0