結果
問題 | No.2732 Similar Permutations |
ユーザー |
![]() |
提出日時 | 2024-04-21 01:41:36 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,476 bytes |
コンパイル時間 | 130 ms |
コンパイル使用メモリ | 12,928 KB |
実行使用メモリ | 46,756 KB |
最終ジャッジ日時 | 2024-10-13 00:07:49 |
合計ジャッジ時間 | 38,252 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 100 WA * 1 |
ソースコード
import sysinput = sys.stdin.readlineN=int(input())A=list(map(int,input().split()))if N==2:x=(A[0]+1)^(A[1]+2)y=(A[0]+2)^(A[1]+1)if x==y:print(1,2)print(2,1)else:print(-1)exit()X=[[] for i in range(4)]for i in range(N):X[A[i]%4].append(i)for i in range(4):if len(X[i])>=2:k=X[i][0]l=X[i][1]ANS1=[0]*NANS2=[0]*NANS1[k]=1ANS1[l]=2ANS2[k]=2ANS2[l]=1now=3for i in range(N):if ANS1[i]==0:ANS1[i]=nownow+=1now=3for i in range(N):if ANS2[i]==0:ANS2[i]=nownow+=1print(*ANS1)print(*ANS2)exit()from itertools import permutationsfrom collections import Counterif N<=5:L=list(permutations(range(N)))ANS=[0]*len(L)for i in range(len(L)):xor=0for j in range(N):xor^=(A[j]+L[i][j]+1)ANS[i]=xorC=Counter(ANS)ans=-1for c in C:if C[c]>=2:ans=cbreakif ans==-1:print(ans)exit()IND=[]for i in range(len(L)):if ANS[i]==ans:IND.append(i)AA=[0]*Nfor i in range(N):AA[i]=L[IND[0]][i]+1print(*AA)AA=[0]*Nfor i in range(N):AA[i]=L[IND[1]][i]+1print(*AA)