結果

問題 No.1167 Graduation Trip
ユーザー MitarushiMitarushi
提出日時 2020-08-11 15:42:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,145 ms / 4,000 ms
コード長 1,182 bytes
コンパイル時間 325 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 109,696 KB
最終ジャッジ日時 2024-10-09 11:31:58
合計ジャッジ時間 48,182 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,850 ms
109,312 KB
testcase_01 AC 1,492 ms
105,472 KB
testcase_02 AC 1,187 ms
102,400 KB
testcase_03 AC 1,827 ms
109,432 KB
testcase_04 AC 1,863 ms
109,056 KB
testcase_05 AC 1,537 ms
106,240 KB
testcase_06 AC 1,832 ms
109,344 KB
testcase_07 AC 1,423 ms
105,472 KB
testcase_08 AC 1,665 ms
103,040 KB
testcase_09 AC 1,691 ms
108,160 KB
testcase_10 AC 3,145 ms
109,440 KB
testcase_11 AC 2,352 ms
109,588 KB
testcase_12 AC 2,394 ms
109,312 KB
testcase_13 AC 2,289 ms
109,440 KB
testcase_14 AC 2,446 ms
109,440 KB
testcase_15 AC 2,017 ms
106,368 KB
testcase_16 AC 1,558 ms
103,168 KB
testcase_17 AC 2,374 ms
109,440 KB
testcase_18 AC 2,542 ms
108,992 KB
testcase_19 AC 2,360 ms
109,696 KB
testcase_20 AC 169 ms
77,312 KB
testcase_21 AC 156 ms
77,056 KB
testcase_22 AC 163 ms
77,432 KB
testcase_23 AC 184 ms
77,312 KB
testcase_24 AC 172 ms
77,312 KB
testcase_25 AC 138 ms
77,184 KB
testcase_26 AC 135 ms
77,440 KB
testcase_27 AC 158 ms
78,080 KB
testcase_28 AC 141 ms
77,268 KB
testcase_29 AC 140 ms
77,568 KB
testcase_30 AC 191 ms
80,896 KB
testcase_31 AC 295 ms
87,552 KB
testcase_32 AC 534 ms
89,732 KB
testcase_33 AC 963 ms
104,448 KB
testcase_34 AC 971 ms
106,112 KB
testcase_35 AC 40 ms
52,480 KB
testcase_36 AC 41 ms
52,480 KB
testcase_37 AC 60 ms
66,432 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]


table = [[] for _ in range(15)]
table[0] = [[i] if i != 0 else[] for i in a]
for i in range(1, 15):
    for j in range(n - (1 << i) + 1):
        table[i].append(merge_base(table[i - 1][j],
                                   table[i - 1][j + (1 << (i-1))]))


def get_section(i, j):
    k = (j - i).bit_length() - 1
    return merge_base(table[k][i], table[k][j-(1 << k)])


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(get_section(j, k))
    print(pow(2, power, mod))
0