結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,688 ms
108,664 KB
testcase_01 AC 1,469 ms
105,988 KB
testcase_02 AC 1,269 ms
101,888 KB
testcase_03 AC 1,657 ms
108,836 KB
testcase_04 AC 1,699 ms
108,672 KB
testcase_05 AC 1,786 ms
106,368 KB
testcase_06 AC 1,722 ms
109,036 KB
testcase_07 AC 1,446 ms
105,472 KB
testcase_08 AC 1,231 ms
102,948 KB
testcase_09 AC 1,573 ms
108,112 KB
testcase_10 AC 3,006 ms
109,056 KB
testcase_11 AC 2,222 ms
109,312 KB
testcase_12 AC 2,977 ms
109,056 KB
testcase_13 AC 2,120 ms
109,184 KB
testcase_14 AC 2,221 ms
108,672 KB
testcase_15 AC 1,888 ms
106,368 KB
testcase_16 AC 1,629 ms
103,040 KB
testcase_17 AC 2,210 ms
109,056 KB
testcase_18 AC 2,043 ms
108,400 KB
testcase_19 AC 2,247 ms
109,128 KB
testcase_20 AC 161 ms
77,460 KB
testcase_21 AC 144 ms
77,012 KB
testcase_22 AC 146 ms
77,472 KB
testcase_23 AC 144 ms
77,056 KB
testcase_24 AC 164 ms
77,824 KB
testcase_25 AC 128 ms
76,800 KB
testcase_26 AC 141 ms
77,268 KB
testcase_27 AC 139 ms
77,440 KB
testcase_28 AC 145 ms
77,440 KB
testcase_29 AC 123 ms
77,568 KB
testcase_30 AC 179 ms
81,268 KB
testcase_31 AC 272 ms
87,136 KB
testcase_32 AC 516 ms
89,092 KB
testcase_33 AC 867 ms
104,176 KB
testcase_34 AC 921 ms
106,112 KB
testcase_35 AC 38 ms
52,736 KB
testcase_36 AC 40 ms
52,992 KB
testcase_37 AC 57 ms
65,664 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(32):
        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