結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
11,008 KB
testcase_01 AC 28 ms
11,008 KB
testcase_02 AC 26 ms
11,008 KB
testcase_03 AC 27 ms
11,008 KB
testcase_04 AC 26 ms
10,880 KB
testcase_05 WA -
testcase_06 AC 26 ms
11,008 KB
testcase_07 AC 26 ms
10,880 KB
testcase_08 WA -
testcase_09 AC 27 ms
11,008 KB
testcase_10 AC 27 ms
11,008 KB
testcase_11 AC 27 ms
11,008 KB
testcase_12 AC 31 ms
11,008 KB
testcase_13 AC 27 ms
10,880 KB
testcase_14 AC 25 ms
11,008 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 258 ms
29,680 KB
testcase_18 AC 255 ms
29,684 KB
testcase_19 AC 261 ms
29,808 KB
testcase_20 AC 353 ms
29,812 KB
testcase_21 WA -
testcase_22 AC 307 ms
29,692 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 36 ms
11,904 KB
testcase_27 AC 29 ms
11,264 KB
testcase_28 AC 55 ms
13,696 KB
testcase_29 AC 35 ms
11,904 KB
testcase_30 WA -
testcase_31 AC 32 ms
11,392 KB
testcase_32 AC 46 ms
12,800 KB
testcase_33 AC 34 ms
11,392 KB
testcase_34 AC 29 ms
11,136 KB
testcase_35 AC 217 ms
20,988 KB
testcase_36 AC 158 ms
20,868 KB
testcase_37 AC 93 ms
29,688 KB
testcase_38 AC 346 ms
29,812 KB
testcase_39 AC 137 ms
29,812 KB
testcase_40 AC 212 ms
29,692 KB
testcase_41 AC 301 ms
29,684 KB
testcase_42 AC 28 ms
10,880 KB
testcase_43 AC 27 ms
11,008 KB
testcase_44 AC 27 ms
10,880 KB
testcase_45 AC 31 ms
11,008 KB
testcase_46 AC 27 ms
11,008 KB
testcase_47 AC 26 ms
11,008 KB
testcase_48 AC 267 ms
29,688 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:
                    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