結果

問題 No.1051 PQ Permutation
ユーザー vwxyzvwxyz
提出日時 2024-08-15 03:37:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,634 bytes
コンパイル時間 529 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 29,784 KB
最終ジャッジ日時 2024-08-15 03:37:16
合計ジャッジ時間 10,108 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,880 KB
testcase_01 AC 27 ms
10,880 KB
testcase_02 AC 28 ms
11,008 KB
testcase_03 WA -
testcase_04 AC 27 ms
11,008 KB
testcase_05 WA -
testcase_06 AC 26 ms
11,008 KB
testcase_07 AC 27 ms
11,008 KB
testcase_08 WA -
testcase_09 AC 27 ms
11,008 KB
testcase_10 WA -
testcase_11 AC 27 ms
10,880 KB
testcase_12 AC 26 ms
11,008 KB
testcase_13 AC 26 ms
11,008 KB
testcase_14 AC 26 ms
10,880 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 233 ms
29,784 KB
testcase_18 AC 239 ms
29,776 KB
testcase_19 AC 236 ms
29,780 KB
testcase_20 AC 330 ms
29,652 KB
testcase_21 WA -
testcase_22 AC 262 ms
29,780 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 35 ms
12,032 KB
testcase_27 AC 28 ms
11,136 KB
testcase_28 AC 53 ms
13,440 KB
testcase_29 AC 38 ms
11,904 KB
testcase_30 WA -
testcase_31 AC 33 ms
11,392 KB
testcase_32 AC 47 ms
12,800 KB
testcase_33 AC 31 ms
11,392 KB
testcase_34 AC 31 ms
11,136 KB
testcase_35 AC 220 ms
20,984 KB
testcase_36 AC 139 ms
20,960 KB
testcase_37 AC 92 ms
29,640 KB
testcase_38 AC 315 ms
29,772 KB
testcase_39 AC 127 ms
29,648 KB
testcase_40 AC 218 ms
29,652 KB
testcase_41 AC 283 ms
29,652 KB
testcase_42 AC 28 ms
11,008 KB
testcase_43 AC 27 ms
11,008 KB
testcase_44 AC 28 ms
11,008 KB
testcase_45 AC 27 ms
11,008 KB
testcase_46 AC 28 ms
11,008 KB
testcase_47 AC 27 ms
10,880 KB
testcase_48 AC 272 ms
29,648 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)
        B.append(BB[j+1])
        BB=BB[:j+1]+BB[j+2:]
        for b in BB:
            if b==Q:
                continue
            B.append(b)
            if b==P:
                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