結果

問題 No.1167 Graduation Trip
ユーザー MitarushiMitarushi
提出日時 2020-08-11 15:40:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,201 ms / 4,000 ms
コード長 1,143 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 109,440 KB
最終ジャッジ日時 2024-10-09 11:30:57
合計ジャッジ時間 49,680 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,839 ms
108,544 KB
testcase_01 AC 1,499 ms
104,960 KB
testcase_02 AC 1,192 ms
102,324 KB
testcase_03 AC 1,865 ms
108,672 KB
testcase_04 AC 1,892 ms
108,800 KB
testcase_05 AC 1,571 ms
106,860 KB
testcase_06 AC 1,880 ms
108,960 KB
testcase_07 AC 1,451 ms
104,576 KB
testcase_08 AC 1,695 ms
102,656 KB
testcase_09 AC 1,735 ms
107,392 KB
testcase_10 AC 3,201 ms
109,440 KB
testcase_11 AC 2,411 ms
108,544 KB
testcase_12 AC 2,395 ms
108,544 KB
testcase_13 AC 2,301 ms
109,056 KB
testcase_14 AC 2,414 ms
109,184 KB
testcase_15 AC 1,997 ms
106,484 KB
testcase_16 AC 1,567 ms
102,348 KB
testcase_17 AC 2,372 ms
108,544 KB
testcase_18 AC 2,498 ms
108,800 KB
testcase_19 AC 2,345 ms
108,544 KB
testcase_20 AC 234 ms
78,492 KB
testcase_21 AC 203 ms
77,808 KB
testcase_22 AC 222 ms
77,696 KB
testcase_23 AC 209 ms
77,312 KB
testcase_24 AC 203 ms
77,440 KB
testcase_25 AC 175 ms
77,688 KB
testcase_26 AC 181 ms
77,056 KB
testcase_27 AC 240 ms
77,312 KB
testcase_28 AC 194 ms
77,508 KB
testcase_29 AC 190 ms
77,184 KB
testcase_30 AC 221 ms
80,836 KB
testcase_31 AC 318 ms
87,296 KB
testcase_32 AC 523 ms
88,960 KB
testcase_33 AC 942 ms
104,320 KB
testcase_34 AC 948 ms
105,856 KB
testcase_35 AC 37 ms
52,608 KB
testcase_36 AC 39 ms
52,480 KB
testcase_37 AC 58 ms
66,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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