結果

問題 No.2895 Zero XOR Subset
ユーザー 寝癖寝癖
提出日時 2024-09-21 01:12:55
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,266 bytes
コンパイル時間 352 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 145,444 KB
最終ジャッジ日時 2024-09-21 01:14:14
合計ジャッジ時間 76,976 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
54,700 KB
testcase_01 AC 1,946 ms
80,640 KB
testcase_02 TLE -
testcase_03 AC 1,948 ms
106,444 KB
testcase_04 AC 1,946 ms
105,948 KB
testcase_05 AC 1,950 ms
104,828 KB
testcase_06 TLE -
testcase_07 AC 1,949 ms
105,380 KB
testcase_08 TLE -
testcase_09 WA -
testcase_10 AC 1,954 ms
103,024 KB
testcase_11 AC 1,948 ms
105,756 KB
testcase_12 TLE -
testcase_13 WA -
testcase_14 AC 1,947 ms
107,284 KB
testcase_15 TLE -
testcase_16 WA -
testcase_17 AC 1,953 ms
107,204 KB
testcase_18 TLE -
testcase_19 WA -
testcase_20 AC 1,952 ms
103,488 KB
testcase_21 AC 1,954 ms
103,896 KB
testcase_22 WA -
testcase_23 AC 1,954 ms
105,256 KB
testcase_24 AC 1,954 ms
105,660 KB
testcase_25 WA -
testcase_26 TLE -
testcase_27 AC 1,956 ms
105,680 KB
testcase_28 WA -
testcase_29 TLE -
testcase_30 WA -
testcase_31 WA -
testcase_32 TLE -
testcase_33 WA -
testcase_34 TLE -
testcase_35 AC 1,956 ms
105,096 KB
testcase_36 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import random
from time import time

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

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