結果

問題 No.184 たのしい排他的論理和(HARD)
ユーザー NoneNone
提出日時 2021-04-04 16:03:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 219 ms / 5,000 ms
コード長 3,400 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 81,780 KB
実行使用メモリ 92,928 KB
最終ジャッジ日時 2024-06-08 12:42:34
合計ジャッジ時間 7,387 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,992 KB
testcase_01 AC 37 ms
52,864 KB
testcase_02 AC 37 ms
52,352 KB
testcase_03 AC 36 ms
52,224 KB
testcase_04 AC 36 ms
52,700 KB
testcase_05 AC 40 ms
52,864 KB
testcase_06 AC 39 ms
52,480 KB
testcase_07 AC 40 ms
52,736 KB
testcase_08 AC 166 ms
84,352 KB
testcase_09 AC 75 ms
67,328 KB
testcase_10 AC 137 ms
79,488 KB
testcase_11 AC 117 ms
74,752 KB
testcase_12 AC 192 ms
89,904 KB
testcase_13 AC 200 ms
90,752 KB
testcase_14 AC 134 ms
79,360 KB
testcase_15 AC 211 ms
92,416 KB
testcase_16 AC 180 ms
86,912 KB
testcase_17 AC 197 ms
90,480 KB
testcase_18 AC 44 ms
59,264 KB
testcase_19 AC 36 ms
52,224 KB
testcase_20 AC 138 ms
80,512 KB
testcase_21 AC 217 ms
92,928 KB
testcase_22 AC 217 ms
92,436 KB
testcase_23 AC 40 ms
53,120 KB
testcase_24 AC 39 ms
52,480 KB
testcase_25 AC 39 ms
52,864 KB
testcase_26 AC 38 ms
52,352 KB
testcase_27 AC 39 ms
52,736 KB
testcase_28 AC 152 ms
81,920 KB
testcase_29 AC 192 ms
90,496 KB
testcase_30 AC 171 ms
86,064 KB
testcase_31 AC 158 ms
83,200 KB
testcase_32 AC 191 ms
87,168 KB
testcase_33 AC 219 ms
92,164 KB
testcase_34 AC 211 ms
92,416 KB
testcase_35 AC 213 ms
92,928 KB
testcase_36 AC 214 ms
92,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class GE():
    """
    mod2の場合、
    A=[int,int,int,...]
    M=max(A[i].bit_length() for i in range(len(A)))
    とする
    """
    def __init__(self,A,mod,M=0):
        self.N=len(A)
        if M:
            self.M=M
        else:
            self.M=len(A[0])
        self.mod=mod
        self.A=A[:]
        self.uptri=None
        self.A2=None
        self.pivot=[]
        self.R=None

    def ut(self):
        if self.mod!=2:
            if self.uptri is not None:
                return self.uptri
            self.uptri=self.A[:]
            c=0
            for i in range(self.N):
                if i+c>=self.M:
                    break
                while self.uptri[i][i+c]==0:
                    for j in range(i+1,self.N):
                        if self.uptri[j][i+c]:
                            self.uptri[i],self.uptri[j]=self.uptri[j],self.uptri[i]
                            break
                    else:
                        c+=1
                        if i+c==self.M:
                            break
                else:
                    self.pivot.append((i,i+c))
                    t=pow(self.uptri[i][i+c],self.mod-2,self.mod)
                    for j in range(i+1,self.N):
                        tj=t*self.uptri[j][i+c]
                        self.uptri[j][i+c:]=[(aj-tj*ai)%self.mod for ai,aj in
                                             zip(self.uptri[i][i+c:],self.uptri[j][i+c:])]
                    continue
                break
            for pi,pj in self.pivot[::-1]:
                t=pow(self.uptri[pi][pj],self.mod-2,self.mod)
                self.uptri[pi][pj:]=[(ai*t)%self.mod for ai in self.uptri[pi][pj:]]
                for i in range(pi-1,-1,-1):
                    ti=self.uptri[i][pj]
                    self.uptri[i][pj:]=[(ai-api*ti)%self.mod for ai,api in zip(self.uptri[i][pj:],self.uptri[pi][pj:])]

            return self.uptri
        else:
            if self.A2 is not None:
                return self.A2
            self.A2=self.A[:]
            c=0
            for i in range(self.N):
                if i+c>=self.M:
                    break
                while not self.A2[i]&2**(i+c):
                    for j in range(i+1,self.N):
                        if self.A2[j]&2**(i+c):
                            self.A2[i],self.A2[j]=self.A2[j],self.A2[i]
                            break
                    else:
                        c+=1
                        if i+c==self.M:
                            break
                else:
                    self.pivot.append((i,i+c))
                    for j in range(i+1,self.N):
                        if self.A2[j]&2**(i+c):
                            self.A2[j]^=self.A2[i]
                    continue
                break
            for pi,pj in self.pivot[::-1]:
                for i in range(pi-1,-1,-1):
                    if 2**pj&self.A2[i]:
                        self.A2[i]^=self.A2[pi]

            return self.A2

    def rank(self):
        if self.R is not None:
            return self.R
        self.ut()
        self.R=len(self.pivot)
        return self.R

    def solve(self):
        self.ut()

############################################################################
import sys
input = sys.stdin.readline


N=int(input())
A=list(map(int, input().split()))
mat=GE(A,2,M=62)
rank=mat.rank()
print(pow(2,rank))
0