結果

問題 No.1051 PQ Permutation
ユーザー 👑 rin204rin204
提出日時 2023-12-29 15:58:05
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 2,176 bytes
コンパイル時間 302 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 112,272 KB
最終ジャッジ日時 2024-09-27 16:14:09
合計ジャッジ時間 7,700 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,740 KB
testcase_01 AC 38 ms
52,648 KB
testcase_02 AC 36 ms
53,652 KB
testcase_03 WA -
testcase_04 AC 36 ms
53,096 KB
testcase_05 AC 36 ms
53,132 KB
testcase_06 AC 35 ms
53,420 KB
testcase_07 AC 36 ms
53,084 KB
testcase_08 AC 34 ms
53,152 KB
testcase_09 AC 35 ms
52,404 KB
testcase_10 WA -
testcase_11 AC 35 ms
53,272 KB
testcase_12 AC 33 ms
53,296 KB
testcase_13 RE -
testcase_14 AC 35 ms
53,176 KB
testcase_15 AC 152 ms
107,704 KB
testcase_16 AC 140 ms
108,576 KB
testcase_17 AC 107 ms
109,116 KB
testcase_18 AC 106 ms
109,488 KB
testcase_19 AC 108 ms
108,936 KB
testcase_20 AC 138 ms
108,688 KB
testcase_21 AC 134 ms
107,684 KB
testcase_22 AC 106 ms
109,056 KB
testcase_23 AC 129 ms
108,488 KB
testcase_24 AC 130 ms
108,244 KB
testcase_25 AC 53 ms
73,584 KB
testcase_26 AC 49 ms
67,936 KB
testcase_27 AC 46 ms
64,680 KB
testcase_28 AC 53 ms
76,564 KB
testcase_29 AC 49 ms
67,924 KB
testcase_30 AC 54 ms
72,268 KB
testcase_31 AC 54 ms
67,004 KB
testcase_32 AC 55 ms
73,000 KB
testcase_33 AC 45 ms
63,888 KB
testcase_34 AC 47 ms
64,532 KB
testcase_35 RE -
testcase_36 AC 83 ms
100,752 KB
testcase_37 AC 73 ms
102,092 KB
testcase_38 AC 122 ms
108,212 KB
testcase_39 AC 80 ms
104,420 KB
testcase_40 AC 112 ms
108,608 KB
testcase_41 AC 123 ms
112,272 KB
testcase_42 RE -
testcase_43 RE -
testcase_44 AC 36 ms
53,352 KB
testcase_45 AC 36 ms
52,524 KB
testcase_46 AC 34 ms
53,196 KB
testcase_47 RE -
testcase_48 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

def next_permutation(P):
    n = len(P)
    for i in range(n - 2, -1, -1):
        if P[i] < P[i + 1]:
            l = i + 1
            r = n - 1
            while r > l:
                P[l], P[r] = P[r], P[l]
                l += 1
                r -= 1
            for j in range(i + 1, n):
                if P[i] < P[j]:
                    P[i], P[j] = P[j], P[i]
                    return True
    return False


def all_permutations(P):
    # 全列挙したい場合はソートしてある状態で渡す
    yield P
    while next_permutation(P):
        yield P


def prev_permutation(P):
    n = len(P)
    for i in range(n - 2, -1, -1):
        if P[i] > P[i + 1]:
            l = i + 1
            r = n - 1
            while r > l:
                P[l], P[r] = P[r], P[l]
                l += 1
                r -= 1
            for j in range(i + 1, n):
                if P[i] > P[j]:
                    P[i], P[j] = P[j], P[i]
                    return True
    return False


def rev_all_permutations(P):
    # 全列挙したい場合は逆順ソートしてある状態で渡す
    yield P
    while prev_permutation(P):
        yield P


n, p, q = map(int, input().split())
A = list(map(int, input().split()))
if not next_permutation(A):
    print(-1)
    exit()


pp = -1
qq = -1
for i, a in enumerate(A):
    if a == p:
        pp = i
    if a == q:
        qq = i

if pp < qq:
    print(*A)
    exit()

if q < p:
    B = A[qq:]
    A = A[:qq]
    mi = 1 << 30
    for b in B:
        if b > q and b < mi:
            mi = b

    A.append(mi)
    B.remove(mi)
    B.sort()
    for b in B:
        if b == q:
            pass
        elif b == p:
            A += [p, q]
        else:
            A.append(b)
    print(*A)
else:
    ma = -1
    ind = -1
    for i in range(n - 1, -1, -1):
        if A[i] > ma:
            ma = A[i]
        if i <= qq and ma > A[i]:
            ind = i
            break

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

    B = A[ind:]
    A = A[:ind]

    mi = 1 << 30
    for b in B:
        if b > q and b < mi:
            mi = b

    A.append(mi)
    B.remove(mi)
    B.sort()
    A += B
    print(*A)
0