結果

問題 No.1167 Graduation Trip
ユーザー chineristACchineristAC
提出日時 2020-08-13 02:54:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,325 ms / 4,000 ms
コード長 1,404 bytes
コンパイル時間 388 ms
コンパイル使用メモリ 82,040 KB
実行使用メモリ 112,632 KB
最終ジャッジ日時 2024-10-09 18:49:04
合計ジャッジ時間 42,133 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,942 ms
111,976 KB
testcase_01 AC 1,453 ms
111,172 KB
testcase_02 AC 776 ms
104,984 KB
testcase_03 AC 2,208 ms
112,008 KB
testcase_04 AC 1,520 ms
111,868 KB
testcase_05 AC 1,491 ms
111,472 KB
testcase_06 AC 1,910 ms
111,304 KB
testcase_07 AC 1,525 ms
105,828 KB
testcase_08 AC 908 ms
104,924 KB
testcase_09 AC 1,153 ms
111,248 KB
testcase_10 AC 2,249 ms
111,792 KB
testcase_11 AC 2,234 ms
111,592 KB
testcase_12 AC 1,699 ms
111,888 KB
testcase_13 AC 2,325 ms
112,632 KB
testcase_14 AC 1,873 ms
111,376 KB
testcase_15 AC 1,414 ms
111,568 KB
testcase_16 AC 1,309 ms
104,932 KB
testcase_17 AC 2,312 ms
111,596 KB
testcase_18 AC 2,110 ms
111,504 KB
testcase_19 AC 2,114 ms
112,220 KB
testcase_20 AC 104 ms
76,784 KB
testcase_21 AC 113 ms
76,924 KB
testcase_22 AC 93 ms
76,616 KB
testcase_23 AC 119 ms
76,748 KB
testcase_24 AC 113 ms
76,940 KB
testcase_25 AC 103 ms
76,796 KB
testcase_26 AC 100 ms
76,988 KB
testcase_27 AC 108 ms
76,724 KB
testcase_28 AC 113 ms
77,008 KB
testcase_29 AC 90 ms
76,636 KB
testcase_30 AC 162 ms
82,256 KB
testcase_31 AC 244 ms
90,580 KB
testcase_32 AC 286 ms
91,248 KB
testcase_33 AC 955 ms
109,484 KB
testcase_34 AC 1,190 ms
109,748 KB
testcase_35 AC 39 ms
52,608 KB
testcase_36 AC 37 ms
54,088 KB
testcase_37 AC 42 ms
58,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#####segfunc#####
def merge_func(x, y):
    new_base=[x[i] for i in range(len(x)) if x[i]!=0]
    for c in y:
        for b in new_base:
            c=min(c,c^b)
        if c:
            new_base.append(c)
    return new_base

#################

#####ide_ele#####
ide_ele = []
#################

class SparseTable():
    def __init__(self,A,merge_func,ide_ele):
        N=len(A)
        n=N.bit_length()
        self.table=[[ide_ele for i in range(n)] for i in range(N)]
        self.merge_func=merge_func

        for i in range(N):
            self.table[i][0]=A[i]

        for j in range(1,n):
            for i in range(0,N-2**j+1):
                f=self.table[i][j-1]
                s=self.table[i+2**(j-1)][j-1]
                self.table[i][j]=self.merge_func(f,s)

    def query(self,s,t):
        b=t-s+1
        m=b.bit_length()-1
        return len(self.merge_func(self.table[s][m],self.table[t-2**m+1][m]))

debug=False

import sys

input=sys.stdin.buffer.readline

N,Q=map(int,input().split())
A=list(map(lambda x:[int(x)],input().split()))
base_seg=SparseTable(A,merge_func,ide_ele)
mod=10**9+7
for _ in range(Q):
    m=int(input())
    b=[-1]+list(map(lambda x:int(x)-1,input().split()))+[N-1]
    ans=1
    for i in range(1,m+2):
        L=b[i-1]+1
        R=b[i]
        base=base_seg.query(L,R)
        cnt=R-L+1
        ans*=pow(2,cnt-base,mod)
        ans%=mod
    print(ans)
    
0