結果
問題 | No.2895 Zero XOR Subset |
ユーザー | 寝癖 |
提出日時 | 2024-09-21 01:09:30 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,252 bytes |
コンパイル時間 | 224 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 421,800 KB |
最終ジャッジ日時 | 2024-09-21 01:09:36 |
合計ジャッジ時間 | 6,583 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
16,512 KB |
testcase_01 | AC | 1,934 ms
11,136 KB |
testcase_02 | TLE | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
ソースコード
import random from time import time N = int(input()) A = list(map(int, input().split())) 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)