結果

問題 No.2895 Zero XOR Subset
ユーザー 寝癖寝癖
提出日時 2024-09-21 01:11:11
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,258 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 118,364 KB
最終ジャッジ日時 2024-09-21 01:12:13
合計ジャッジ時間 55,657 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
61,440 KB
testcase_01 AC 1,944 ms
80,932 KB
testcase_02 RE -
testcase_03 AC 1,944 ms
105,496 KB
testcase_04 AC 1,945 ms
108,356 KB
testcase_05 AC 1,945 ms
106,524 KB
testcase_06 RE -
testcase_07 AC 1,942 ms
104,984 KB
testcase_08 RE -
testcase_09 WA -
testcase_10 AC 1,941 ms
104,248 KB
testcase_11 AC 1,946 ms
103,760 KB
testcase_12 RE -
testcase_13 WA -
testcase_14 AC 1,943 ms
106,912 KB
testcase_15 RE -
testcase_16 WA -
testcase_17 AC 1,942 ms
106,068 KB
testcase_18 RE -
testcase_19 WA -
testcase_20 AC 1,946 ms
103,012 KB
testcase_21 AC 1,942 ms
105,368 KB
testcase_22 WA -
testcase_23 AC 1,948 ms
107,304 KB
testcase_24 AC 1,943 ms
106,204 KB
testcase_25 WA -
testcase_26 RE -
testcase_27 AC 1,953 ms
105,260 KB
testcase_28 WA -
testcase_29 RE -
testcase_30 WA -
testcase_31 WA -
testcase_32 RE -
testcase_33 WA -
testcase_34 RE -
testcase_35 AC 1,946 ms
106,780 KB
testcase_36 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import random
from time import time

N = int(input())
A = list(map(int, input().split()))[:100]

st = time()

def solve(check: list[int]):
    K = len(check)
    # B[i] をcheckの桁だけ取り出したもの
    B = [0]*N
    for i in range(N):
        for j in range(K):
            B[i] ^= (A[i]>>check[j]&1)<<j
    
    # dp[i][j][k] := i桁目まで見て、jが作れるか?kは1個以上使ったかどうか
    dp = [[[False, False] for _ in range(1<<K)] for _ in range(N+1)]
    dp[0][0][0] = 1
    for i in range(N):
        for j in range(1<<K):
            for k in range(2):
                dp[i+1][j^B[i]][1] |= dp[i][j][k]
                dp[i+1][j][k] |= dp[i][j][k]
    
    if not dp[N][0][1]:
        return
    
    # 復元
    ans = []
    j = 0
    k = 1
    for i in range(N-1, -1, -1):
        # dp[i+1][j][k] が True であることが保証
        for nk in range(2):
            if dp[i][j^B[i]][nk]:
                j ^= B[i]
                k = nk
                ans.append(i+1)
                break
    
    T = 0
    for i in ans:
        T ^= A[i-1]
    if T == 0:
        print(len(ans))
        print(*ans)
        exit()

while time()-st < 1.9:
    check = random.sample(range(60), 5)
    solve(check)

print(-1)
0