結果

問題 No.2732 Similar Permutations
ユーザー flygon
提出日時 2024-04-19 22:20:21
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 961 bytes
コンパイル時間 262 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 134,704 KB
最終ジャッジ日時 2024-10-11 15:49:15
合計ジャッジ時間 27,016 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 33 WA * 68
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(5*10**5)
input = sys.stdin.readline
from collections import defaultdict, deque, Counter
from heapq import heappop, heappush
from bisect import bisect_left, bisect_right
from math import gcd

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

if max(a) - min(a) >= n:
    print(-1)
    exit()
if len(set(a)) != n:
    x = [[] for i in range(max(a)+10)]
    for i in range(n):
        x[a[i]].append(i)

    p1 = list(range(1, n+1))
    p2 = list(range(1, n+1))

    for i in range(max(a)+10):
        if len(x[i]) >= 2:
            s,t = x[i][0], x[i][1]
            p2[t], p2[s] = p2[s], p2[t]
            break
else:
    a = [[a[i], i] for i in range(n)]
    x1 = [i for i in range(2, n+1)] + [1]
    x2 = [n] + [i for i in range(1, n)]
    a.sort()
    p1 = [0]*(n)
    p2 = [0]*(n)
    for i in range(n):
        p1[a[i][1]] = x1[i]
        p2[a[i][1]] = x2[i]
if p1 == p2:
    print(-1)
else:
    print(*p1)
    print(*p2)
0