結果

問題 No.1969 XOR Equation
ユーザー chineristACchineristAC
提出日時 2022-02-10 17:49:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 2,885 bytes
コンパイル時間 513 ms
コンパイル使用メモリ 81,736 KB
実行使用メモリ 142,196 KB
最終ジャッジ日時 2023-10-21 01:34:40
合計ジャッジ時間 10,264 ms
ジャッジサーバーID
(参考情報)
judge14 / judge9
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 43 ms
59,404 KB
testcase_02 AC 44 ms
59,404 KB
testcase_03 AC 44 ms
59,404 KB
testcase_04 AC 43 ms
59,404 KB
testcase_05 WA -
testcase_06 AC 42 ms
59,404 KB
testcase_07 AC 46 ms
61,636 KB
testcase_08 AC 39 ms
53,520 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 347 ms
79,080 KB
testcase_14 AC 235 ms
77,508 KB
testcase_15 AC 635 ms
142,196 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 136 ms
89,712 KB
testcase_19 AC 141 ms
92,540 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 249 ms
96,540 KB
testcase_26 AC 153 ms
82,452 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 133 ms
84,604 KB
testcase_30 AC 48 ms
64,404 KB
testcase_31 AC 49 ms
64,392 KB
testcase_32 AC 135 ms
89,488 KB
testcase_33 AC 133 ms
88,912 KB
testcase_34 AC 131 ms
90,308 KB
testcase_35 AC 509 ms
81,316 KB
testcase_36 AC 69 ms
76,960 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<<(t+1)) == A[next_next_up]%(1<<(t+1)):
                    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]

def brute(N,A,Y):
    ans = 2**61
    def dfs(d,tmp,up):
        nonlocal ans
        if d==61:
            if len(up)&1==0:
                return tmp
            else:
                return 1<<61
        res = ans
        if tmp > res:
            return ans

        zero,one,two = 0,set(),set()
        for i in range(N):
            if A[i]>>d & 1:
                if i in up:
                    two.add(i)
                else:
                    one.add(i)
            else:
                if i in up:
                    one.add(i)
                else:
                    zero += 1
        
        if len(one)&1==(Y>>d)&1:
            res = min(res,dfs(d+1,tmp,two))
            if res != 2**61:
                return res
        if (zero+len(two))&1==(Y>>d)&1 and res > tmp + (1<<d):
            n_up = set([i for i in one]+[j for j in two])
            res = min(res,dfs(d+1,tmp+(1<<d),n_up))
        
        ans = min(ans,res)
        
        return res

    res = dfs(0,0,set())
    if res < 2**61:
        return res
    return -1

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