結果

問題 No.1051 PQ Permutation
ユーザー roarisroaris
提出日時 2020-05-15 02:35:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 218 ms / 2,000 ms
コード長 2,080 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 164,448 KB
最終ジャッジ日時 2024-09-16 16:12:41
合計ジャッジ時間 7,649 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 40 ms
52,352 KB
testcase_02 AC 38 ms
52,352 KB
testcase_03 AC 39 ms
51,968 KB
testcase_04 AC 40 ms
52,352 KB
testcase_05 AC 40 ms
52,352 KB
testcase_06 AC 40 ms
52,352 KB
testcase_07 AC 40 ms
52,224 KB
testcase_08 AC 40 ms
52,352 KB
testcase_09 AC 38 ms
51,840 KB
testcase_10 AC 40 ms
52,224 KB
testcase_11 AC 39 ms
52,352 KB
testcase_12 AC 40 ms
51,968 KB
testcase_13 AC 40 ms
51,968 KB
testcase_14 AC 39 ms
52,352 KB
testcase_15 AC 188 ms
119,480 KB
testcase_16 AC 189 ms
119,460 KB
testcase_17 AC 212 ms
164,120 KB
testcase_18 AC 218 ms
164,308 KB
testcase_19 AC 205 ms
164,056 KB
testcase_20 AC 206 ms
143,704 KB
testcase_21 AC 192 ms
134,100 KB
testcase_22 AC 212 ms
164,448 KB
testcase_23 AC 196 ms
137,048 KB
testcase_24 AC 190 ms
135,264 KB
testcase_25 AC 77 ms
77,696 KB
testcase_26 AC 70 ms
74,112 KB
testcase_27 AC 58 ms
65,408 KB
testcase_28 AC 87 ms
87,680 KB
testcase_29 AC 68 ms
73,856 KB
testcase_30 AC 76 ms
77,312 KB
testcase_31 AC 68 ms
70,656 KB
testcase_32 AC 80 ms
77,440 KB
testcase_33 AC 58 ms
67,328 KB
testcase_34 AC 62 ms
67,072 KB
testcase_35 AC 108 ms
107,904 KB
testcase_36 AC 117 ms
113,024 KB
testcase_37 AC 121 ms
137,728 KB
testcase_38 AC 198 ms
148,552 KB
testcase_39 AC 112 ms
108,416 KB
testcase_40 AC 191 ms
153,956 KB
testcase_41 AC 193 ms
154,084 KB
testcase_42 AC 38 ms
52,352 KB
testcase_43 AC 37 ms
51,968 KB
testcase_44 AC 38 ms
51,968 KB
testcase_45 AC 38 ms
52,224 KB
testcase_46 AC 39 ms
52,224 KB
testcase_47 AC 40 ms
52,480 KB
testcase_48 AC 128 ms
137,728 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 (Q in s) and (P not in s):
        break
    
    if (P not in s) and (Q not in s):
        if max1[i]!=Q and A[i]<max1[i]:
            match = i
        elif A[i]<max2[i]:
            match = i
    else:
        if A[i]<max1[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])

rem.sort()
s = set(ans)

if P in s:
    rem2 = []
    
    for i in range(len(rem)):
        if rem[i]==A[match]:
            mark = i+1
            
            for j in range(len(rem)):
                if j!=mark:
                    rem2.append(rem[j])
                    
            break
    
    ans.append(rem[mark])
    ans += rem2
else:
    rem2 = []
    
    for i in range(len(rem)):
        if rem[i]==A[match]:
            if rem[i+1]!=Q:
                mark = i+1
            else:
                mark = i+2
            
            for j in range(len(rem)):
                if j!=mark:
                    rem2.append(rem[j])
            
            break
    
    if P<Q:
        ans.append(rem[mark])
        ans += rem2
    else:
        if rem[mark]==P:
            ans.append(rem[mark])
            ans += rem2
        else:
            ans.append(rem[mark])
        
            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)
    
print(*ans)
0