結果

問題 No.2732 Similar Permutations
ユーザー mkawa2mkawa2
提出日時 2024-04-19 22:46:41
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,478 bytes
コンパイル時間 561 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 114,816 KB
最終ジャッジ日時 2024-04-19 22:47:08
合計ジャッジ時間 22,284 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 38 ms
52,352 KB
testcase_02 AC 90 ms
86,528 KB
testcase_03 AC 114 ms
97,408 KB
testcase_04 AC 76 ms
82,048 KB
testcase_05 AC 73 ms
80,256 KB
testcase_06 AC 65 ms
70,016 KB
testcase_07 AC 98 ms
92,032 KB
testcase_08 AC 88 ms
82,688 KB
testcase_09 AC 67 ms
75,776 KB
testcase_10 AC 148 ms
111,360 KB
testcase_11 AC 63 ms
72,576 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 149 ms
111,232 KB
testcase_20 AC 154 ms
111,744 KB
testcase_21 AC 169 ms
111,744 KB
testcase_22 AC 114 ms
97,536 KB
testcase_23 AC 167 ms
111,360 KB
testcase_24 AC 114 ms
99,456 KB
testcase_25 AC 152 ms
111,488 KB
testcase_26 AC 136 ms
110,336 KB
testcase_27 AC 174 ms
111,232 KB
testcase_28 AC 131 ms
107,392 KB
testcase_29 AC 171 ms
111,488 KB
testcase_30 AC 120 ms
103,936 KB
testcase_31 AC 169 ms
111,616 KB
testcase_32 AC 135 ms
108,524 KB
testcase_33 AC 140 ms
111,412 KB
testcase_34 AC 105 ms
100,736 KB
testcase_35 AC 139 ms
111,232 KB
testcase_36 AC 138 ms
108,416 KB
testcase_37 AC 135 ms
111,232 KB
testcase_38 AC 121 ms
110,620 KB
testcase_39 AC 137 ms
111,488 KB
testcase_40 AC 140 ms
110,464 KB
testcase_41 AC 137 ms
111,872 KB
testcase_42 AC 115 ms
106,496 KB
testcase_43 AC 133 ms
111,232 KB
testcase_44 AC 97 ms
96,768 KB
testcase_45 AC 136 ms
111,360 KB
testcase_46 AC 129 ms
111,360 KB
testcase_47 AC 137 ms
111,744 KB
testcase_48 AC 100 ms
100,040 KB
testcase_49 AC 159 ms
111,812 KB
testcase_50 AC 105 ms
99,712 KB
testcase_51 AC 133 ms
114,816 KB
testcase_52 AC 125 ms
110,720 KB
testcase_53 AC 135 ms
111,500 KB
testcase_54 AC 131 ms
111,360 KB
testcase_55 AC 135 ms
111,476 KB
testcase_56 AC 139 ms
111,724 KB
testcase_57 AC 94 ms
96,768 KB
testcase_58 AC 118 ms
103,680 KB
testcase_59 AC 106 ms
103,040 KB
testcase_60 AC 95 ms
97,152 KB
testcase_61 AC 94 ms
94,720 KB
testcase_62 AC 126 ms
110,336 KB
testcase_63 AC 34 ms
52,096 KB
testcase_64 AC 36 ms
52,096 KB
testcase_65 AC 34 ms
52,608 KB
testcase_66 AC 34 ms
52,352 KB
testcase_67 WA -
testcase_68 AC 36 ms
52,096 KB
testcase_69 WA -
testcase_70 WA -
testcase_71 WA -
testcase_72 WA -
testcase_73 WA -
testcase_74 WA -
testcase_75 AC 36 ms
51,968 KB
testcase_76 AC 36 ms
51,968 KB
testcase_77 AC 35 ms
52,096 KB
testcase_78 WA -
testcase_79 AC 34 ms
52,096 KB
testcase_80 AC 35 ms
52,352 KB
testcase_81 AC 34 ms
52,608 KB
testcase_82 AC 35 ms
52,352 KB
testcase_83 WA -
testcase_84 AC 35 ms
52,608 KB
testcase_85 AC 34 ms
52,352 KB
testcase_86 AC 35 ms
52,224 KB
testcase_87 AC 36 ms
52,096 KB
testcase_88 AC 38 ms
52,096 KB
testcase_89 AC 36 ms
52,608 KB
testcase_90 AC 58 ms
51,840 KB
testcase_91 WA -
testcase_92 AC 37 ms
52,608 KB
testcase_93 AC 37 ms
52,224 KB
testcase_94 AC 37 ms
52,096 KB
testcase_95 AC 35 ms
52,352 KB
testcase_96 AC 34 ms
52,224 KB
testcase_97 AC 34 ms
51,968 KB
testcase_98 AC 37 ms
52,608 KB
testcase_99 AC 34 ms
52,352 KB
testcase_100 AC 33 ms
52,352 KB
testcase_101 AC 34 ms
51,840 KB
testcase_102 AC 34 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
# inf = -1-(-1 << 31)
inf = -1-(-1 << 62)

# md = 10**9+7
md = 998244353

def f(aa, bb):
    x = 0
    for a, b in zip(aa, bb): x ^= a+b
    return x

n = II()
aa = LI()

seen = {}
even = -1
j = -1
for i, a in enumerate(aa):
    if a in seen: j = seen[a]
    if a & 1 == 0:
        if even == -1:
            even = i
        else:
            j = even
    if j != -1:
        p = [-1]*n
        q = [-1]*n
        # print(i, j)
        p[i] = q[j] = 2
        p[j] = q[i] = 3
        for arr in [p, q]:
            a = 1
            for k in range(n):
                if arr[k] == -1:
                    arr[k] = a
                    if a == 1: a = 4
                    else: a += 1
        # print(f(aa, p), f(aa, q))
        print(*p)
        print(*q)
        exit()

print(-1)
0