結果
問題 | No.1051 PQ Permutation |
ユーザー | brthyyjp |
提出日時 | 2020-05-08 23:11:08 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,237 bytes |
コンパイル時間 | 204 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 270,952 KB |
最終ジャッジ日時 | 2024-07-05 19:59:19 |
合計ジャッジ時間 | 4,855 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
58,368 KB |
testcase_01 | AC | 36 ms
52,352 KB |
testcase_02 | AC | 35 ms
52,352 KB |
testcase_03 | AC | 41 ms
52,224 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 35 ms
52,096 KB |
testcase_08 | AC | 35 ms
52,096 KB |
testcase_09 | AC | 35 ms
52,352 KB |
testcase_10 | AC | 35 ms
52,480 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 36 ms
52,352 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) if flag1 and flag2: print(*B) else: print(-1)