結果

問題 No.2895 Zero XOR Subset
ユーザー ねしんねしん
提出日時 2024-09-20 23:17:01
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 980 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 209,500 KB
最終ジャッジ日時 2024-09-20 23:17:19
合計ジャッジ時間 14,169 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
53,888 KB
testcase_01 AC 43 ms
53,888 KB
testcase_02 WA -
testcase_03 AC 43 ms
54,016 KB
testcase_04 AC 43 ms
53,504 KB
testcase_05 AC 43 ms
53,888 KB
testcase_06 WA -
testcase_07 AC 42 ms
54,016 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 42 ms
53,504 KB
testcase_11 AC 43 ms
54,016 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 44 ms
54,016 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 44 ms
53,632 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 44 ms
53,504 KB
testcase_21 AC 44 ms
53,760 KB
testcase_22 WA -
testcase_23 AC 44 ms
53,860 KB
testcase_24 AC 43 ms
53,632 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 43 ms
54,144 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 45 ms
53,760 KB
testcase_36 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
pair=defaultdict(list)
ind=defaultdict(int)
M=int(input())
B=list(map(int,input().split()))
def dfs(S,c):
  if len(S)<=2:
    if len(S)==2:
      a,b=list(S)
      if pair[a^b]!=[]:
        ans=[ind[a],ind[b]]
        for i in pair[a^b]:
          ans.append(i)
        print(len(ans))
        print(*ans)
        exit()
      else:
        pair[a^b]=[ind[a],ind[b]]
    if len(S)==1:
      S=list(S)
      a=S[0]
      if pair[a]!=[]:
        ans=[ind[a]]
        for i in pair[a^b]:
          ans.append(i)
        print(len(ans))
        print(*ans)
        exit()
      else:
        pair[a]=[ind[a]]
  else:
    s0=set()
    s1=set()
    for i in S:
      if (2**c)&i==0:
        s0.add(i)
      else:
        s1.add(i)
    dfs(s0,c-1)
    dfs(s1,c-1)
    
for i in range(M):
  if ind[B[i]]!=0:
    print(2)
    print(ind[B[i]],i+1)
    exit()
  elif B[i]==0:
    print(1)
    print(i+1)
    exit()
  ind[B[i]]=i+1
dfs(set(B),59)
print(-1)
0