結果

問題 No.1051 PQ Permutation
ユーザー roarisroaris
提出日時 2020-05-11 18:24:41
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,712 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 164,736 KB
最終ジャッジ日時 2024-07-18 17:01:21
合計ジャッジ時間 7,809 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,224 KB
testcase_01 AC 33 ms
52,224 KB
testcase_02 AC 33 ms
52,224 KB
testcase_03 WA -
testcase_04 AC 32 ms
52,096 KB
testcase_05 AC 31 ms
52,480 KB
testcase_06 WA -
testcase_07 AC 32 ms
51,968 KB
testcase_08 AC 32 ms
52,864 KB
testcase_09 AC 34 ms
52,224 KB
testcase_10 AC 37 ms
52,096 KB
testcase_11 AC 33 ms
52,608 KB
testcase_12 AC 31 ms
52,224 KB
testcase_13 AC 31 ms
52,352 KB
testcase_14 WA -
testcase_15 AC 161 ms
119,692 KB
testcase_16 AC 158 ms
118,768 KB
testcase_17 AC 173 ms
164,736 KB
testcase_18 AC 170 ms
156,628 KB
testcase_19 AC 168 ms
151,328 KB
testcase_20 AC 174 ms
134,448 KB
testcase_21 AC 164 ms
125,812 KB
testcase_22 AC 172 ms
147,516 KB
testcase_23 AC 172 ms
127,024 KB
testcase_24 AC 168 ms
125,668 KB
testcase_25 AC 58 ms
78,044 KB
testcase_26 AC 51 ms
73,600 KB
testcase_27 AC 48 ms
66,304 KB
testcase_28 AC 66 ms
88,064 KB
testcase_29 AC 53 ms
73,600 KB
testcase_30 AC 60 ms
77,824 KB
testcase_31 AC 58 ms
70,528 KB
testcase_32 AC 72 ms
77,952 KB
testcase_33 AC 55 ms
66,816 KB
testcase_34 AC 50 ms
66,304 KB
testcase_35 AC 87 ms
108,288 KB
testcase_36 AC 95 ms
112,896 KB
testcase_37 AC 100 ms
137,856 KB
testcase_38 AC 168 ms
148,896 KB
testcase_39 AC 92 ms
108,140 KB
testcase_40 WA -
testcase_41 AC 196 ms
154,588 KB
testcase_42 AC 35 ms
52,352 KB
testcase_43 AC 34 ms
52,224 KB
testcase_44 AC 33 ms
52,224 KB
testcase_45 AC 33 ms
52,352 KB
testcase_46 AC 33 ms
51,840 KB
testcase_47 AC 33 ms
52,480 KB
testcase_48 AC 110 ms
138,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N, P, Q = map(int, input().split())
A = list(map(int, input().split()))
max1 = [-1]*(N+1)
max2 = [-2]*(N+1)

for i in range(N-1, -1, -1):
    if A[i]>max1[i+1]:
        max1[i] = A[i]
        max2[i] = max1[i+1]
    elif A[i]>max2[i+1]:
        max1[i] = max1[i+1]
        max2[i] = A[i]
    else:
        max1[i] = max1[i+1]
        max2[i] = max2[i+1]
        
match = -1
s = set()

for i in range(N):
    if (P not in s) and (Q not in s):
        if max1[i]!=Q and max1[i]>A[i]:
            match = i
        elif max1[i]==Q and max2[i]>A[i]:
            match = i
    elif (P not in s) and (Q in s):
        break
    else:
        if max1[i]>A[i]:
            match = i

    s.add(A[i])

if match==-1:
    print(-1)
    exit()
    
ans = []
rem = []

for i in range(N):
    if i<match:
        ans.append(A[i])
    else:
        rem.append(A[i])

s = set(ans)
rem.sort()

if (P not in s) and (Q not in s):
    for i in range(len(rem)):
        if rem[i]==A[match]:
            if rem[i+1]!=Q:
                mark = i+1
            else:
                mark = i+2
    
    ans.append(rem[mark])
    rem2 = [rem[i] for i in range(len(rem)) if i!=mark]
    
    if P<Q:
        ans += rem2
    else:
        for rem2_i in rem2:
            if rem2_i<P and rem2_i!=Q:
                ans.append(rem2_i)
        
        ans.append(P)
        ans.append(Q)
        
        for rem2_i in rem2:
            if rem2_i>P:
                ans.append(rem2_i)
else:
    for i in range(len(rem)):
        if rem[i]==A[match]:
            mark = i+1
    
    ans.append(rem[mark])
    
    for i in range(len(rem)):
        if i!=mark:
            ans.append(rem[i])

print(*ans)
0