結果
問題 | No.1051 PQ Permutation |
ユーザー | brthyyjp |
提出日時 | 2020-05-08 23:06:19 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,193 bytes |
コンパイル時間 | 161 ms |
コンパイル使用メモリ | 81,664 KB |
実行使用メモリ | 271,076 KB |
最終ジャッジ日時 | 2024-07-05 19:57:47 |
合計ジャッジ時間 | 5,043 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
57,472 KB |
testcase_01 | AC | 47 ms
51,840 KB |
testcase_02 | AC | 43 ms
52,224 KB |
testcase_03 | AC | 43 ms
52,224 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 43 ms
52,224 KB |
testcase_08 | AC | 42 ms
52,352 KB |
testcase_09 | WA | - |
testcase_10 | AC | 42 ms
52,480 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 44 ms
52,480 KB |
testcase_15 | TLE | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
ソースコード
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)