結果

問題 No.2732 Similar Permutations
ユーザー titiatitia
提出日時 2024-04-21 01:49:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,600 bytes
コンパイル時間 81 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 46,968 KB
最終ジャッジ日時 2024-04-21 01:50:32
合計ジャッジ時間 37,353 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
11,008 KB
testcase_01 AC 33 ms
11,008 KB
testcase_02 AC 158 ms
21,260 KB
testcase_03 AC 268 ms
30,760 KB
testcase_04 AC 101 ms
17,172 KB
testcase_05 AC 88 ms
15,664 KB
testcase_06 AC 49 ms
12,800 KB
testcase_07 AC 221 ms
25,820 KB
testcase_08 AC 113 ms
18,132 KB
testcase_09 AC 70 ms
14,444 KB
testcase_10 AC 453 ms
45,640 KB
testcase_11 AC 60 ms
13,568 KB
testcase_12 AC 483 ms
46,708 KB
testcase_13 AC 461 ms
45,444 KB
testcase_14 AC 495 ms
45,440 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 462 ms
45,816 KB
testcase_20 AC 456 ms
45,632 KB
testcase_21 AC 476 ms
45,320 KB
testcase_22 AC 274 ms
30,360 KB
testcase_23 AC 484 ms
45,448 KB
testcase_24 AC 303 ms
30,932 KB
testcase_25 AC 465 ms
45,452 KB
testcase_26 AC 430 ms
39,392 KB
testcase_27 AC 470 ms
45,444 KB
testcase_28 AC 373 ms
37,744 KB
testcase_29 AC 474 ms
45,316 KB
testcase_30 AC 342 ms
35,296 KB
testcase_31 AC 498 ms
45,444 KB
testcase_32 AC 432 ms
42,780 KB
testcase_33 AC 479 ms
45,312 KB
testcase_34 AC 307 ms
33,132 KB
testcase_35 AC 502 ms
45,440 KB
testcase_36 AC 428 ms
42,688 KB
testcase_37 AC 478 ms
45,296 KB
testcase_38 AC 413 ms
40,764 KB
testcase_39 AC 499 ms
45,400 KB
testcase_40 AC 397 ms
39,516 KB
testcase_41 AC 504 ms
45,416 KB
testcase_42 AC 348 ms
36,392 KB
testcase_43 AC 490 ms
45,204 KB
testcase_44 AC 249 ms
28,600 KB
testcase_45 AC 515 ms
44,884 KB
testcase_46 AC 439 ms
41,420 KB
testcase_47 AC 479 ms
44,464 KB
testcase_48 AC 314 ms
31,552 KB
testcase_49 AC 469 ms
43,792 KB
testcase_50 AC 293 ms
30,636 KB
testcase_51 AC 484 ms
42,192 KB
testcase_52 AC 393 ms
37,688 KB
testcase_53 AC 489 ms
46,760 KB
testcase_54 AC 462 ms
46,288 KB
testcase_55 AC 493 ms
46,124 KB
testcase_56 AC 474 ms
46,728 KB
testcase_57 AC 282 ms
29,440 KB
testcase_58 AC 325 ms
35,492 KB
testcase_59 AC 314 ms
33,932 KB
testcase_60 AC 296 ms
30,636 KB
testcase_61 AC 248 ms
28,812 KB
testcase_62 AC 400 ms
39,900 KB
testcase_63 AC 27 ms
11,008 KB
testcase_64 AC 27 ms
10,880 KB
testcase_65 AC 28 ms
10,880 KB
testcase_66 AC 34 ms
10,880 KB
testcase_67 AC 33 ms
10,880 KB
testcase_68 AC 27 ms
10,880 KB
testcase_69 AC 27 ms
11,008 KB
testcase_70 AC 29 ms
10,880 KB
testcase_71 AC 28 ms
10,880 KB
testcase_72 AC 28 ms
11,008 KB
testcase_73 AC 28 ms
10,880 KB
testcase_74 AC 28 ms
11,008 KB
testcase_75 AC 27 ms
10,880 KB
testcase_76 AC 27 ms
10,880 KB
testcase_77 AC 27 ms
10,880 KB
testcase_78 AC 27 ms
10,880 KB
testcase_79 AC 27 ms
10,880 KB
testcase_80 AC 27 ms
11,008 KB
testcase_81 AC 27 ms
11,008 KB
testcase_82 AC 28 ms
10,880 KB
testcase_83 WA -
testcase_84 AC 26 ms
11,008 KB
testcase_85 AC 26 ms
10,880 KB
testcase_86 AC 27 ms
10,880 KB
testcase_87 WA -
testcase_88 AC 27 ms
11,008 KB
testcase_89 AC 27 ms
10,880 KB
testcase_90 AC 27 ms
10,880 KB
testcase_91 AC 27 ms
10,880 KB
testcase_92 AC 26 ms
11,008 KB
testcase_93 AC 26 ms
11,008 KB
testcase_94 WA -
testcase_95 AC 28 ms
10,880 KB
testcase_96 AC 27 ms
11,008 KB
testcase_97 AC 28 ms
10,880 KB
testcase_98 AC 27 ms
10,880 KB
testcase_99 AC 28 ms
11,008 KB
testcase_100 AC 27 ms
10,880 KB
testcase_101 AC 28 ms
10,880 KB
testcase_102 AC 28 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N=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]*N
        ANS2=[0]*N

        ANS1[k]=2
        ANS1[l]=3

        ANS2[k]=3
        ANS2[l]=2

        LL=[2,3]

        now=1

        for i in range(N):
            if ANS1[i]==0:
                ANS1[i]=now
                now+=1

            while now in LL:
                now+=1

        now=1

        for i in range(N):
            if ANS2[i]==0:
                ANS2[i]=now
                now+=1

            while now in LL:
                now+=1

        print(*ANS1)
        print(*ANS2)

        exit()

from itertools import permutations
from collections import Counter

if N<=5:
    L=list(permutations(range(N)))

    ANS=[0]*len(L)

    for i in range(len(L)):
        xor=0

        for j in range(N):
            xor^=(A[j]+L[i][j]+1)

        ANS[i]=xor

    C=Counter(ANS)

    ans=-1

    for c in C:
        if C[c]>=2:
            ans=c
            break

    if ans==-1:
        print(ans)
        exit()

    IND=[]
    for i in range(len(L)):
        if ANS[i]==ans:
            IND.append(i)

    AA=[0]*N
    for i in range(N):
        AA[i]=L[IND[0]][i]+1

    print(*AA)

    AA=[0]*N
    for i in range(N):
        AA[i]=L[IND[1]][i]+1

    print(*AA)
    
    
0