結果

問題 No.2732 Similar Permutations
ユーザー Yukino DX.Yukino DX.
提出日時 2024-04-27 14:44:02
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 915 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,476 KB
実行使用メモリ 107,136 KB
最終ジャッジ日時 2024-04-27 14:45:14
合計ジャッジ時間 65,752 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,288 KB
testcase_01 AC 40 ms
53,252 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
testcase_61 WA -
testcase_62 WA -
testcase_63 AC 35 ms
52,140 KB
testcase_64 AC 34 ms
52,388 KB
testcase_65 AC 34 ms
51,992 KB
testcase_66 AC 39 ms
52,432 KB
testcase_67 WA -
testcase_68 AC 35 ms
52,952 KB
testcase_69 WA -
testcase_70 WA -
testcase_71 WA -
testcase_72 WA -
testcase_73 WA -
testcase_74 AC 38 ms
53,568 KB
testcase_75 AC 35 ms
53,132 KB
testcase_76 WA -
testcase_77 AC 37 ms
51,936 KB
testcase_78 AC 36 ms
52,284 KB
testcase_79 AC 36 ms
52,824 KB
testcase_80 WA -
testcase_81 WA -
testcase_82 AC 39 ms
52,080 KB
testcase_83 WA -
testcase_84 AC 38 ms
52,884 KB
testcase_85 AC 36 ms
53,336 KB
testcase_86 WA -
testcase_87 WA -
testcase_88 AC 35 ms
52,440 KB
testcase_89 AC 39 ms
52,472 KB
testcase_90 WA -
testcase_91 AC 36 ms
52,736 KB
testcase_92 AC 36 ms
51,872 KB
testcase_93 AC 35 ms
52,688 KB
testcase_94 WA -
testcase_95 AC 36 ms
52,580 KB
testcase_96 WA -
testcase_97 AC 43 ms
53,544 KB
testcase_98 WA -
testcase_99 AC 41 ms
53,000 KB
testcase_100 AC 37 ms
53,040 KB
testcase_101 WA -
testcase_102 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import permutations


def answer(p):
    for pi in p:
        print(pi + 1, end=" ")
    print()


def solve_less10():
    hm = dict()
    for p in permutations(range(n), n):
        xor = 0
        for i in range(n):
            xor ^= p[i] + a[i]

        if xor in hm:
            answer(hm[xor])
            answer(p)
            exit()

        hm[xor] = p

    print(-1)


def solve_more10():
    xor_base = 0
    for i in range(10, n):
        xor_base ^= i + a[i]

    hm = dict()
    for p in permutations(range(10), 10):
        xor = 0
        for i in range(10):
            xor ^= p[i] + a[i]

        if xor_base ^ xor in hm:
            answer(hm[xor] + tuple(range(10, n)))
            answer(p + tuple(range(10, n)))
            exit()

        hm[xor] = p

    print(-1)


n = int(input())
a = list(map(int, input().split()))

if n < 10:
    solve_less10()
else:
    solve_more10()
0