結果

問題 No.1167 Graduation Trip
ユーザー MitarushiMitarushi
提出日時 2020-08-11 22:47:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,209 ms / 4,000 ms
コード長 1,600 bytes
コンパイル時間 596 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 109,952 KB
最終ジャッジ日時 2024-10-09 11:51:54
合計ジャッジ時間 52,284 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,237 ms
109,032 KB
testcase_01 AC 1,641 ms
106,476 KB
testcase_02 AC 1,494 ms
102,940 KB
testcase_03 AC 1,967 ms
109,188 KB
testcase_04 AC 2,010 ms
109,184 KB
testcase_05 AC 2,251 ms
106,752 KB
testcase_06 AC 1,956 ms
109,216 KB
testcase_07 AC 1,636 ms
105,728 KB
testcase_08 AC 1,386 ms
102,928 KB
testcase_09 AC 1,837 ms
108,032 KB
testcase_10 AC 2,534 ms
109,824 KB
testcase_11 AC 2,973 ms
109,696 KB
testcase_12 AC 3,209 ms
109,656 KB
testcase_13 AC 2,550 ms
109,824 KB
testcase_14 AC 2,431 ms
109,620 KB
testcase_15 AC 2,236 ms
107,008 KB
testcase_16 AC 1,936 ms
103,680 KB
testcase_17 AC 2,501 ms
109,952 KB
testcase_18 AC 2,415 ms
109,084 KB
testcase_19 AC 2,430 ms
109,680 KB
testcase_20 AC 176 ms
77,340 KB
testcase_21 AC 167 ms
77,184 KB
testcase_22 AC 174 ms
77,636 KB
testcase_23 AC 173 ms
77,440 KB
testcase_24 AC 171 ms
77,312 KB
testcase_25 AC 137 ms
77,508 KB
testcase_26 AC 137 ms
77,184 KB
testcase_27 AC 158 ms
77,696 KB
testcase_28 AC 145 ms
77,184 KB
testcase_29 AC 142 ms
77,728 KB
testcase_30 AC 173 ms
81,024 KB
testcase_31 AC 279 ms
87,040 KB
testcase_32 AC 578 ms
89,608 KB
testcase_33 AC 959 ms
104,832 KB
testcase_34 AC 1,112 ms
107,044 KB
testcase_35 AC 39 ms
52,992 KB
testcase_36 AC 39 ms
52,992 KB
testcase_37 AC 58 ms
66,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

n, q = [int(i) for i in input().split()]
a = [int(i) for i in input().split()]

mod = 10**9+7


def merge_base(a, b):
    c = a + b

    i = 1
    k = 0
    for _ in range(40):
        for j in range(k, len(c)):
            if (i & c[j]) != 0:
                break
        else:
            i <<= 1
            continue

        c[j], c[k] = c[k], c[j]
        for j in range(k + 1, len(c)):
            if (i & c[j]) != 0:
                c[j] ^= c[k]
        i <<= 1
        k += 1

    return c[:k]


class SparseTable:
    def __init__(self, a, func=max, one=-10**18):
        self.table = [a[:]]
        self.n = len(a)
        self.logn = self.n.bit_length()
        self.func = func
        self.one = one

        for i in map(lambda x: 1 << x, range(self.logn - 1)):
            self.table.append([])
            for j in range(self.n - i * 2 + 1):
                self.table[-1].append(self.func(self.table[-2][j],
                                                self.table[-2][j + i]))

    def get_section(self, i, j):
        length = j - i
        log = length.bit_length() - 1
        if length <= 0:
            return self.one
        return self.func(self.table[log][i], self.table[log][j - (1 << log)])


sp = SparseTable([[i] if i != 0 else[] for i in a], merge_base, [])


for _ in range(q):
    m = int(input())
    b = [0]
    for i in input().split():
        b.append(int(i))
    b.append(n)

    power = n
    for i in range(m + 1):
        j, k = b[i], b[i+1]
        power -= len(sp.get_section(j, k))
    print(pow(2, power, mod))
0