結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 37 ms
52,480 KB
testcase_02 AC 82 ms
86,472 KB
testcase_03 AC 115 ms
97,280 KB
testcase_04 AC 71 ms
82,176 KB
testcase_05 AC 65 ms
80,000 KB
testcase_06 AC 55 ms
70,272 KB
testcase_07 AC 91 ms
91,928 KB
testcase_08 AC 72 ms
82,816 KB
testcase_09 AC 59 ms
76,160 KB
testcase_10 AC 145 ms
111,532 KB
testcase_11 AC 55 ms
72,448 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 147 ms
111,488 KB
testcase_20 AC 143 ms
111,488 KB
testcase_21 AC 145 ms
111,232 KB
testcase_22 AC 104 ms
97,552 KB
testcase_23 AC 151 ms
111,392 KB
testcase_24 AC 105 ms
99,584 KB
testcase_25 AC 148 ms
111,512 KB
testcase_26 AC 131 ms
110,320 KB
testcase_27 AC 145 ms
111,480 KB
testcase_28 AC 126 ms
107,136 KB
testcase_29 AC 148 ms
111,232 KB
testcase_30 AC 121 ms
103,928 KB
testcase_31 AC 145 ms
111,488 KB
testcase_32 AC 139 ms
108,544 KB
testcase_33 AC 148 ms
111,720 KB
testcase_34 AC 113 ms
100,980 KB
testcase_35 AC 155 ms
111,520 KB
testcase_36 AC 147 ms
108,416 KB
testcase_37 AC 154 ms
111,232 KB
testcase_38 AC 136 ms
110,720 KB
testcase_39 AC 151 ms
111,488 KB
testcase_40 AC 132 ms
110,592 KB
testcase_41 AC 146 ms
111,360 KB
testcase_42 AC 126 ms
107,096 KB
testcase_43 AC 148 ms
111,744 KB
testcase_44 AC 101 ms
96,896 KB
testcase_45 AC 147 ms
111,340 KB
testcase_46 AC 136 ms
111,308 KB
testcase_47 AC 145 ms
112,000 KB
testcase_48 AC 108 ms
99,968 KB
testcase_49 AC 145 ms
112,000 KB
testcase_50 AC 108 ms
99,968 KB
testcase_51 AC 146 ms
114,964 KB
testcase_52 AC 131 ms
110,672 KB
testcase_53 AC 147 ms
111,796 KB
testcase_54 AC 146 ms
111,616 KB
testcase_55 AC 147 ms
111,232 KB
testcase_56 AC 146 ms
111,624 KB
testcase_57 AC 102 ms
96,896 KB
testcase_58 AC 119 ms
103,552 KB
testcase_59 AC 114 ms
103,296 KB
testcase_60 AC 105 ms
97,664 KB
testcase_61 AC 100 ms
94,592 KB
testcase_62 AC 132 ms
110,716 KB
testcase_63 AC 37 ms
52,224 KB
testcase_64 AC 37 ms
52,608 KB
testcase_65 AC 37 ms
52,096 KB
testcase_66 AC 37 ms
52,224 KB
testcase_67 WA -
testcase_68 AC 37 ms
52,224 KB
testcase_69 WA -
testcase_70 WA -
testcase_71 WA -
testcase_72 WA -
testcase_73 WA -
testcase_74 WA -
testcase_75 AC 37 ms
52,224 KB
testcase_76 AC 38 ms
52,676 KB
testcase_77 AC 40 ms
52,352 KB
testcase_78 WA -
testcase_79 AC 41 ms
52,188 KB
testcase_80 AC 38 ms
52,224 KB
testcase_81 AC 38 ms
51,968 KB
testcase_82 AC 40 ms
52,608 KB
testcase_83 WA -
testcase_84 AC 38 ms
52,352 KB
testcase_85 AC 38 ms
52,224 KB
testcase_86 AC 38 ms
51,968 KB
testcase_87 AC 38 ms
52,608 KB
testcase_88 AC 40 ms
52,224 KB
testcase_89 AC 38 ms
52,096 KB
testcase_90 AC 39 ms
52,352 KB
testcase_91 WA -
testcase_92 AC 38 ms
52,352 KB
testcase_93 AC 38 ms
52,608 KB
testcase_94 AC 41 ms
51,968 KB
testcase_95 AC 39 ms
52,224 KB
testcase_96 AC 38 ms
52,480 KB
testcase_97 AC 39 ms
52,608 KB
testcase_98 AC 39 ms
52,352 KB
testcase_99 AC 38 ms
52,352 KB
testcase_100 AC 38 ms
52,224 KB
testcase_101 AC 39 ms
52,352 KB
testcase_102 AC 37 ms
52,736 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