結果

問題 No.1969 XOR Equation
ユーザー chineristACchineristAC
提出日時 2022-02-12 00:35:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 560 ms / 2,000 ms
コード長 1,831 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 92,084 KB
最終ジャッジ日時 2024-09-21 03:29:01
合計ジャッジ時間 9,448 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
60,456 KB
testcase_01 AC 57 ms
66,184 KB
testcase_02 AC 61 ms
66,968 KB
testcase_03 AC 58 ms
65,832 KB
testcase_04 AC 56 ms
66,100 KB
testcase_05 AC 59 ms
67,200 KB
testcase_06 AC 57 ms
66,444 KB
testcase_07 AC 59 ms
67,448 KB
testcase_08 AC 59 ms
67,872 KB
testcase_09 AC 354 ms
78,740 KB
testcase_10 AC 353 ms
78,732 KB
testcase_11 AC 422 ms
80,632 KB
testcase_12 AC 419 ms
80,788 KB
testcase_13 AC 406 ms
79,900 KB
testcase_14 AC 323 ms
78,516 KB
testcase_15 AC 186 ms
91,436 KB
testcase_16 AC 186 ms
91,516 KB
testcase_17 AC 191 ms
91,620 KB
testcase_18 AC 186 ms
91,436 KB
testcase_19 AC 185 ms
91,600 KB
testcase_20 AC 353 ms
78,716 KB
testcase_21 AC 286 ms
79,760 KB
testcase_22 AC 250 ms
84,160 KB
testcase_23 AC 354 ms
78,932 KB
testcase_24 AC 283 ms
79,812 KB
testcase_25 AC 171 ms
91,336 KB
testcase_26 AC 171 ms
91,792 KB
testcase_27 AC 183 ms
91,824 KB
testcase_28 AC 184 ms
91,652 KB
testcase_29 AC 185 ms
92,084 KB
testcase_30 AC 186 ms
91,908 KB
testcase_31 AC 185 ms
91,504 KB
testcase_32 AC 186 ms
91,780 KB
testcase_33 AC 183 ms
91,648 KB
testcase_34 AC 188 ms
91,804 KB
testcase_35 AC 560 ms
79,740 KB
testcase_36 AC 146 ms
91,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve_mini(N,A,Y,M=60):
    dp = [[1<<(M+1) for j in range(N+1)] for i in range(M+1)]
    for j in range(Y>>M,N+1,2):
        dp[M][j] = 0
    
    low_sort = [[i for i in range(N)] for _ in range(M)]
    
    """
    for t in range(M):
        low_sort[t].sort(key=lambda i:A[i]%(1<<(t+1)),reverse=True)
    """
    
    pre = [i for i in range(N)]
    for t in range(M):
        zero,one = [],[]
        for i in pre:
            if A[i]>>t & 1:
                one.append(i)
            else:
                zero.append(i)
        pre = one + zero
        low_sort[t] = [i for i in pre]
    
    for i in range(M)[::-1]:
        zero,one,two = 0,0,0
        for j in range(N):
            if A[j]>>i & 1:
                one += 1
            else:
                zero += 1
        
        if one&1==(Y>>i & 1):
            dp[i][0] = min(dp[i][0], 2*dp[i+1][two])
        if (zero+two)&1==(Y>>i & 1):
            dp[i][0] = min(dp[i][0], 2*dp[i+1][one+two]+1)
        
        if i==0:
            break

        for j in range(1,N+1):
            next_up = low_sort[i-1][j-1]
            if A[next_up]>>i & 1:
                one -= 1
                two += 1
            else:
                zero -= 1
                one += 1

            if j!=N:
                next_next_up = low_sort[i-1][j]
                if A[next_up]%(1<<(i)) == A[next_next_up]%(1<<(i)):
                    continue
            
            if one&1==(Y>>i & 1):
                dp[i][j] = min(dp[i][j], 2*dp[i+1][two])
            if (zero+two)&1==(Y>>i & 1):
                dp[i][j] = min(dp[i][j], 2*dp[i+1][one+two]+1)
            
    
    if dp[0][0]==1<<(M+1):
        return -1
    return dp[0][0]

for _ in range(int(input())):
    N,Y = map(int,input().split())
    A = list(map(int,input().split()))
    print(solve_mini(N,A,Y))
0