結果

問題 No.2895 Zero XOR Subset
ユーザー katonyonkokatonyonko
提出日時 2024-09-21 19:42:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 1,805 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 108,092 KB
最終ジャッジ日時 2024-09-21 19:42:32
合計ジャッジ時間 7,179 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
55,316 KB
testcase_01 AC 44 ms
54,856 KB
testcase_02 AC 122 ms
107,816 KB
testcase_03 AC 56 ms
66,608 KB
testcase_04 AC 56 ms
65,228 KB
testcase_05 AC 56 ms
66,060 KB
testcase_06 AC 122 ms
107,816 KB
testcase_07 AC 56 ms
65,164 KB
testcase_08 AC 124 ms
107,940 KB
testcase_09 AC 59 ms
65,632 KB
testcase_10 AC 59 ms
66,592 KB
testcase_11 AC 57 ms
66,028 KB
testcase_12 AC 120 ms
107,724 KB
testcase_13 AC 57 ms
66,892 KB
testcase_14 AC 60 ms
65,292 KB
testcase_15 AC 123 ms
107,812 KB
testcase_16 AC 56 ms
65,836 KB
testcase_17 AC 56 ms
65,108 KB
testcase_18 AC 122 ms
108,092 KB
testcase_19 AC 58 ms
67,112 KB
testcase_20 AC 57 ms
66,232 KB
testcase_21 AC 59 ms
65,340 KB
testcase_22 AC 58 ms
65,824 KB
testcase_23 AC 58 ms
66,676 KB
testcase_24 AC 57 ms
66,216 KB
testcase_25 AC 59 ms
65,848 KB
testcase_26 AC 125 ms
107,572 KB
testcase_27 AC 58 ms
65,512 KB
testcase_28 AC 58 ms
65,580 KB
testcase_29 AC 121 ms
107,696 KB
testcase_30 AC 57 ms
66,324 KB
testcase_31 AC 58 ms
65,920 KB
testcase_32 AC 129 ms
107,696 KB
testcase_33 AC 56 ms
66,112 KB
testcase_34 AC 119 ms
107,836 KB
testcase_35 AC 58 ms
65,480 KB
testcase_36 AC 123 ms
107,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import io
import sys
from collections import defaultdict, deque, Counter
from itertools import permutations, combinations, accumulate
from heapq import heappush, heappop
from bisect import bisect_right, bisect_left
from math import gcd
import math

_INPUT = """\
6
4
2 0 2 4
3
2024 20 24
"""

def elimination(A,N=60):
  used=[0]*len(A)
  K=[[0]*i+[1]+[0]*(len(A)-i-1) for i in range(len(A))]
  for i in reversed(range(N)):
    f=0
    for j in range(len(A)):
      if (A[j]>>i)&1==1 and used[j]==0:
        if f==0:
          x=A[j]
          used[j]=1
          m=K[j].copy()
          f=1
        else:
          A[j]^=x
          for k in range(len(A)):
            if m[k]==1:
              K[j][k]^=1
  return K,A

def input():
  return sys.stdin.readline()[:-1]

def solve(test):
  N=int(input())
  A=list(map(int, input().split()))
  K,A=elimination(A[:61])
  flg=0
  for i in range(min(len(A),61)):
    if A[i]==0:
      M=K[i].count(1)
      print(M)
      print(*[j+1 for j in range(len(A)) if K[i][j]==1])
      flg=1
      break
  if flg==0:
    print(-1)

def random_input():
  from random import randint,shuffle
  N=randint(1,10)
  M=randint(1,N)
  A=list(range(1,M+1))+[randint(1,M) for _ in range(N-M)]
  shuffle(A)
  return (" ".join(map(str, [N,M]))+"\n"+" ".join(map(str, A))+"\n")*3

def simple_solve():
  return []

def main(test):
  if test==0:
    solve(0)
  elif test==1:
    sys.stdin = io.StringIO(_INPUT)
    case_no=int(input())
    for _ in range(case_no):
      solve(0)
  else:
    for i in range(1000):
      sys.stdin = io.StringIO(random_input())
      x=solve(1)
      y=simple_solve()
      if x!=y:
        print(i,x,y)
        print(*[line for line in sys.stdin],sep='')
        break

#0:提出用、1:与えられたテスト用、2:ストレステスト用
main(0)
0