結果

問題 No.1051 PQ Permutation
ユーザー maspymaspy
提出日時 2020-05-08 21:57:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 861 bytes
コンパイル時間 134 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 29,532 KB
最終ジャッジ日時 2024-07-05 19:35:45
合計ジャッジ時間 6,708 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,624 KB
testcase_01 AC 30 ms
10,496 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 26 ms
10,624 KB
testcase_04 AC 26 ms
10,752 KB
testcase_05 AC 26 ms
10,752 KB
testcase_06 AC 26 ms
10,624 KB
testcase_07 AC 26 ms
10,496 KB
testcase_08 AC 26 ms
10,624 KB
testcase_09 AC 26 ms
10,752 KB
testcase_10 AC 26 ms
10,624 KB
testcase_11 AC 25 ms
10,752 KB
testcase_12 AC 27 ms
10,624 KB
testcase_13 AC 25 ms
10,624 KB
testcase_14 AC 25 ms
10,624 KB
testcase_15 AC 264 ms
29,528 KB
testcase_16 AC 259 ms
29,408 KB
testcase_17 AC 176 ms
29,532 KB
testcase_18 AC 183 ms
29,408 KB
testcase_19 AC 186 ms
29,528 KB
testcase_20 AC 231 ms
29,532 KB
testcase_21 AC 235 ms
29,532 KB
testcase_22 AC 186 ms
29,400 KB
testcase_23 AC 234 ms
29,528 KB
testcase_24 AC 236 ms
29,400 KB
testcase_25 AC 41 ms
12,488 KB
testcase_26 AC 35 ms
11,904 KB
testcase_27 AC 29 ms
10,880 KB
testcase_28 AC 50 ms
13,440 KB
testcase_29 AC 34 ms
11,904 KB
testcase_30 AC 42 ms
12,620 KB
testcase_31 AC 29 ms
11,008 KB
testcase_32 AC 41 ms
12,520 KB
testcase_33 AC 29 ms
11,008 KB
testcase_34 AC 27 ms
11,264 KB
testcase_35 AC 123 ms
20,968 KB
testcase_36 AC 115 ms
20,588 KB
testcase_37 AC 100 ms
29,528 KB
testcase_38 AC 223 ms
29,404 KB
testcase_39 AC 113 ms
29,432 KB
testcase_40 AC 189 ms
29,404 KB
testcase_41 AC 214 ms
29,404 KB
testcase_42 RE -
testcase_43 AC 26 ms
10,496 KB
testcase_44 AC 25 ms
10,752 KB
testcase_45 AC 26 ms
10,496 KB
testcase_46 AC 26 ms
10,752 KB
testcase_47 RE -
testcase_48 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import bisect

read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

N,P,Q = map(int, readline().split())
A = [0] + list(map(int, read().split()))

def next_perm(A):
    B = [A.pop()]
    while A[-1] > B[-1]:
        B.append(A.pop())
    x = A.pop()
    i = bisect.bisect_left(B,x)
    A.append(B[i])
    B[i] = x
    A += B
    return A

def solve(A, P, Q):
    next_perm(A)
    if A[0]:
        return False
    p = A.index(P)
    q = A.index(Q)
    if p < q:
        return A
    # とりあえず、Qを動かす
    A = A[:q + 1] + sorted(A[q + 1:], reverse=True)
    next_perm(A)
    p = A.index(P)
    q = A.index(Q)
    if p < q:
        return A
    assert P > Q
    del A[q]
    A.insert(p, Q)
    return A

A = solve(A, P, Q)
if not A or A[0] != 0:
    print(-1)
else:
    print(*A[1:])
0