結果
問題 | No.318 学学学学学 |
ユーザー | ikd |
提出日時 | 2019-04-18 14:59:57 |
言語 | Nim (2.0.2) |
結果 |
AC
|
実行時間 | 72 ms / 2,000 ms |
コード長 | 3,028 bytes |
コンパイル時間 | 3,920 ms |
コンパイル使用メモリ | 72,884 KB |
実行使用メモリ | 24,240 KB |
最終ジャッジ日時 | 2024-07-01 23:12:31 |
合計ジャッジ時間 | 6,502 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 6 ms
6,816 KB |
testcase_01 | AC | 10 ms
6,944 KB |
testcase_02 | AC | 12 ms
6,944 KB |
testcase_03 | AC | 9 ms
6,944 KB |
testcase_04 | AC | 11 ms
6,940 KB |
testcase_05 | AC | 72 ms
23,880 KB |
testcase_06 | AC | 63 ms
21,492 KB |
testcase_07 | AC | 67 ms
20,724 KB |
testcase_08 | AC | 63 ms
19,124 KB |
testcase_09 | AC | 57 ms
18,816 KB |
testcase_10 | AC | 48 ms
18,524 KB |
testcase_11 | AC | 67 ms
24,240 KB |
testcase_12 | AC | 60 ms
21,196 KB |
testcase_13 | AC | 52 ms
19,072 KB |
testcase_14 | AC | 52 ms
18,304 KB |
testcase_15 | AC | 51 ms
17,884 KB |
testcase_16 | AC | 51 ms
17,536 KB |
testcase_17 | AC | 56 ms
17,016 KB |
testcase_18 | AC | 44 ms
16,280 KB |
testcase_19 | AC | 37 ms
16,900 KB |
testcase_20 | AC | 36 ms
13,056 KB |
testcase_21 | AC | 1 ms
6,944 KB |
testcase_22 | AC | 2 ms
6,940 KB |
testcase_23 | AC | 1 ms
6,944 KB |
testcase_24 | AC | 2 ms
6,940 KB |
testcase_25 | AC | 2 ms
6,944 KB |
testcase_26 | AC | 1 ms
6,944 KB |
testcase_27 | AC | 2 ms
6,944 KB |
testcase_28 | AC | 1 ms
6,944 KB |
ソースコード
type HeapQueue*[T] = distinct seq[T] proc newHeapQueue*[T](): HeapQueue[T] {.inline.} = HeapQueue[T](newSeq[T]()) proc newHeapQueue*[T](h: var HeapQueue[T]) {.inline.} = h = HeapQueue[T]( newSeq[T]()) proc len*[T](h: HeapQueue[T]): int {.inline.} = seq[T](h).len proc `[]`*[T](h: HeapQueue[T], i: int): T {.inline.} = seq[T](h)[i] proc `[]=`[T](h: var HeapQueue[T], i: int, v: T) {.inline.} = seq[T](h)[i] = v proc add[T](h: var HeapQueue[T], v: T) {.inline.} = seq[T](h).add(v) proc heapCmp[T](x, y: T): bool {.inline.} = return (x < y) # 'heap' is a heap at all indices >= startpos, except possibly for pos. pos # is the index of a leaf with a possibly out-of-order value. Restore the # heap invariant. proc siftdown[T](heap: var HeapQueue[T], startpos, p: int) = var pos = p var newitem = heap[pos] # Follow the path to the root, moving parents down until finding a place # newitem fits. while pos > startpos: let parentpos = (pos - 1) shr 1 let parent = heap[parentpos] if heapCmp(newitem, parent): heap[pos] = parent pos = parentpos else: break heap[pos] = newitem proc siftup[T](heap: var HeapQueue[T], p: int) = let endpos = len(heap) var pos = p let startpos = pos let newitem = heap[pos] # Bubble up the smaller child until hitting a leaf. var childpos = 2*pos + 1 # leftmost child position while childpos < endpos: # Set childpos to index of smaller child. let rightpos = childpos + 1 if rightpos < endpos and not heapCmp(heap[childpos], heap[rightpos]): childpos = rightpos # Move the smaller child up. heap[pos] = heap[childpos] pos = childpos childpos = 2*pos + 1 # The leaf at pos is empty now. Put newitem there, and bubble it up # to its final resting place (by sifting its parents down). heap[pos] = newitem siftdown(heap, startpos, pos) proc push*[T](heap: var HeapQueue[T], item: T) = ## Push item onto heap, maintaining the heap invariant. (seq[T](heap)).add(item) siftdown(heap, 0, len(heap)-1) proc pop*[T](heap: var HeapQueue[T]): T = ## Pop the smallest item off the heap, maintaining the heap invariant. let lastelt = seq[T](heap).pop() if heap.len > 0: result = heap[0] heap[0] = lastelt siftup(heap, 0) else: result = lastelt # https://github.com/nim-lang/Nim/blob/master/lib/pure/collections/heapqueue.nim # ---------------------------------------------------------------------------------------------- # # ---------------------------------------------------------------------------------------------- # import strutils, sequtils, tables proc main() = let n = stdin.readLine.strip.parseInt a = stdin.readLine.strip.split.map(parseInt) var right = initTable[int, int]() for i in 0..<n: right[a[i]] = i var q = newHeapQueue[int]() b = newSeq[int](n) for i in 0..<n: while q.len > 0 and right[-q[0]] < i: discard q.pop q.push(-a[i]) b[i] = -q[0] echo b.map(proc(it: int): string = $it).join(" ") main()