結果

問題 No.1051 PQ Permutation
ユーザー vwxyzvwxyz
提出日時 2024-08-15 03:47:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 341 ms / 2,000 ms
コード長 1,856 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 29,808 KB
最終ジャッジ日時 2024-08-15 03:47:48
合計ジャッジ時間 8,351 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,880 KB
testcase_01 AC 28 ms
11,008 KB
testcase_02 AC 27 ms
11,136 KB
testcase_03 AC 26 ms
10,880 KB
testcase_04 AC 27 ms
11,136 KB
testcase_05 AC 27 ms
11,008 KB
testcase_06 AC 26 ms
10,880 KB
testcase_07 AC 26 ms
11,008 KB
testcase_08 AC 26 ms
10,880 KB
testcase_09 AC 27 ms
11,008 KB
testcase_10 AC 26 ms
11,008 KB
testcase_11 AC 26 ms
11,008 KB
testcase_12 AC 26 ms
11,008 KB
testcase_13 AC 28 ms
11,008 KB
testcase_14 AC 27 ms
11,008 KB
testcase_15 AC 341 ms
29,652 KB
testcase_16 AC 340 ms
29,680 KB
testcase_17 AC 237 ms
29,680 KB
testcase_18 AC 250 ms
29,676 KB
testcase_19 AC 238 ms
29,804 KB
testcase_20 AC 318 ms
29,808 KB
testcase_21 AC 306 ms
29,680 KB
testcase_22 AC 250 ms
29,804 KB
testcase_23 AC 306 ms
29,676 KB
testcase_24 AC 314 ms
29,688 KB
testcase_25 AC 46 ms
12,800 KB
testcase_26 AC 38 ms
11,904 KB
testcase_27 AC 29 ms
11,136 KB
testcase_28 AC 56 ms
13,824 KB
testcase_29 AC 38 ms
12,032 KB
testcase_30 AC 49 ms
12,800 KB
testcase_31 AC 33 ms
11,520 KB
testcase_32 AC 47 ms
12,960 KB
testcase_33 AC 30 ms
11,392 KB
testcase_34 AC 31 ms
11,136 KB
testcase_35 AC 200 ms
20,828 KB
testcase_36 AC 132 ms
20,880 KB
testcase_37 AC 91 ms
29,676 KB
testcase_38 AC 289 ms
29,680 KB
testcase_39 AC 119 ms
29,804 KB
testcase_40 AC 222 ms
29,680 KB
testcase_41 AC 254 ms
29,804 KB
testcase_42 AC 27 ms
11,008 KB
testcase_43 AC 26 ms
10,880 KB
testcase_44 AC 26 ms
11,008 KB
testcase_45 AC 26 ms
11,008 KB
testcase_46 AC 27 ms
10,880 KB
testcase_47 AC 27 ms
11,008 KB
testcase_48 AC 259 ms
29,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def Next_Permutation(perm,inplace=False):
    N=len(perm)
    b=N-1
    while b and perm[b-1]>perm[b]:
        b-=1
    if b==0:
        return None
    i=max(i for i in range(b,N) if perm[i]>perm[b-1])
    if inplace:
        queue=perm[i:i+1]+perm[:i:-1]+perm[b-1:b]+perm[i-1:b-1:-1]
        while b-1<len(perm):
            perm.pop()
        perm+=queue
        return perm
    else:
        i=max(i for i in range(b,N) if perm[i]>perm[b-1])
        return perm[:b-1]+perm[i:i+1]+perm[:i:-1]+perm[b-1:b]+perm[i-1:b-1:-1]

N,P,Q=map(int,input().split())
A=list(map(int,input().split()))
if A==sorted(A,reverse=True):
    print(-1)
    exit()
A=Next_Permutation(A)
if A.index(P)<A.index(Q):
    B=A
else:
    if Q<P or max(A[A.index(Q):])!=Q:
        i=A.index(Q)
        B=A[:i]
        BB=A[i:]
        BB.sort()
        j=BB.index(Q)
        if BB[j+1]==P:
            B.append(BB[j+1])
            for b in BB:
                if b==P:
                    continue
                B.append(b)
        else:
            B.append(BB[j+1])
            BB=BB[:j+1]+BB[j+2:]
            for b in BB:
                if b==Q and P>Q:
                    continue
                B.append(b)
                if b==P and P>Q:
                    B.append(Q)
    else:
        if all(A[i]>A[i+1] for i in range(A.index(Q))):
            print(-1)
            exit()
        inf=1<<30
        dp=A[:]
        dp[A.index(Q)]=-inf
        for i in range(N-2,-1,-1):
            dp[i]=max(dp[i],dp[i+1])
        idx=[i for i in range(A.index(Q)) if dp[i]>A[i]]
        if not idx:
            print(-1)
            exit()
        i=max(idx)
        B=A[:i]
        BB=A[i:]
        BB.sort()
        b=min(b for b in BB if b>A[i] and b!=Q)
        B.append(b)
        for bb in BB:
            if b==bb:
                continue
            B.append(bb)
print(*B)
0