結果

問題 No.1051 PQ Permutation
ユーザー brthyyjpbrthyyjp
提出日時 2020-05-08 22:56:53
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,194 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 108,160 KB
最終ジャッジ日時 2024-07-05 19:55:43
合計ジャッジ時間 10,032 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,840 KB
testcase_01 AC 42 ms
52,224 KB
testcase_02 AC 41 ms
52,224 KB
testcase_03 AC 41 ms
52,224 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 42 ms
52,480 KB
testcase_08 WA -
testcase_09 AC 43 ms
51,968 KB
testcase_10 WA -
testcase_11 AC 42 ms
52,480 KB
testcase_12 WA -
testcase_13 AC 42 ms
52,480 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 229 ms
90,368 KB
testcase_36 AC 239 ms
89,856 KB
testcase_37 AC 222 ms
108,032 KB
testcase_38 AC 386 ms
107,264 KB
testcase_39 AC 223 ms
107,520 KB
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 42 ms
52,352 KB
testcase_45 AC 40 ms
51,968 KB
testcase_46 WA -
testcase_47 AC 41 ms
51,968 KB
testcase_48 AC 277 ms
107,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, p, q = map(int, input().split())
A = list(map(int, input().split()))

C = list(range(1, n+1))
import heapq
heapq.heapify(C)

B = [0]*n
flag1 = False
flag2 = False
for i in range(n):
    a = A[i]
    temp = []
    while C:
        x = heapq.heappop(C)
        if not flag2:
            if x <= A[i]:
                temp.append(x)
                continue
            else:
                if x != q:
                    B[i] = x
                    break
                else:
                    if flag1:
                        B[i] = x
                        break
                    else:
                        temp.append(x)
                        continue
        else:
            if x != q:
                B[i] = x
                break
            else:
                if flag1:
                    B[i] = x
                    break
                else:
                    temp.append(x)
                    continue

    if B[i] == 0:
        #print(B)
        print(-1)
        exit()
    if B[i] == p:
        flag1 = True
    if not flag2:
        if B[i] > A[i]:
            flag2 = True
    while temp:
        y = temp.pop()
        heapq.heappush(C, y)
print(*B)
0