結果

問題 No.2195 AND Set
ユーザー ntudantuda
提出日時 2023-01-22 12:15:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 717 ms / 2,000 ms
コード長 947 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 99,296 KB
最終ジャッジ日時 2024-06-24 17:08:09
合計ジャッジ時間 11,425 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
51,840 KB
testcase_01 AC 42 ms
52,096 KB
testcase_02 AC 538 ms
88,208 KB
testcase_03 AC 584 ms
89,672 KB
testcase_04 AC 535 ms
87,424 KB
testcase_05 AC 665 ms
90,132 KB
testcase_06 AC 650 ms
89,536 KB
testcase_07 AC 586 ms
86,568 KB
testcase_08 AC 666 ms
89,964 KB
testcase_09 AC 589 ms
85,956 KB
testcase_10 AC 708 ms
98,656 KB
testcase_11 AC 711 ms
98,788 KB
testcase_12 AC 706 ms
99,296 KB
testcase_13 AC 717 ms
98,660 KB
testcase_14 AC 715 ms
98,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

Q = int(input())

D = (1<<30) - 1
N = Q

# N: 処理する区間の長さ
N0 = 2**(N).bit_length()
data = [D]*(2*N0)

# a_k の値を x に更新
def update(k, x):
    k += N0-1
    data[k] = x
    while k >= 0:
        k = (k - 1) // 2
        data[k] = data[2*k+1] & data[2*k+2]
# 区間[l, r)のAND
def query(l, r):
    s = D
    L = l + N0; R = r + N0
    while L < R:
        if R & 1:
            R -= 1
            s &= data[R-1]
        if L & 1:
            s &= data[L-1]
            L += 1
        L >>= 1; R >>= 1
    return s

dic = {}

for i in range(Q):
    quer = list(map(int,input().split()))
    if quer[0] == 3:
        if dic:
            print(query(0,N))
        else:
            print(-1)
    else:
        t,u = quer
        if t == 1:
            if u not in dic:
                dic[u] = i
                update(i,u)
        else:
            if u in dic:
                update(dic[u],D)
                dic.pop(u)


0