結果
問題 | No.318 学学学学学 |
ユーザー | t8m8⛄️ |
提出日時 | 2017-06-10 15:46:47 |
言語 | Nim (2.0.2) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,807 bytes |
コンパイル時間 | 3,791 ms |
コンパイル使用メモリ | 73,088 KB |
実行使用メモリ | 23,552 KB |
最終ジャッジ日時 | 2024-06-30 01:19:33 |
合計ジャッジ時間 | 6,476 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 6 ms
5,248 KB |
testcase_01 | AC | 10 ms
6,144 KB |
testcase_02 | AC | 12 ms
6,528 KB |
testcase_03 | AC | 9 ms
5,888 KB |
testcase_04 | AC | 11 ms
6,400 KB |
testcase_05 | AC | 64 ms
23,552 KB |
testcase_06 | AC | 61 ms
20,096 KB |
testcase_07 | WA | - |
testcase_08 | AC | 47 ms
16,896 KB |
testcase_09 | AC | 42 ms
15,744 KB |
testcase_10 | AC | 35 ms
14,080 KB |
testcase_11 | AC | 62 ms
23,296 KB |
testcase_12 | AC | 49 ms
17,664 KB |
testcase_13 | AC | 44 ms
16,512 KB |
testcase_14 | AC | 39 ms
15,744 KB |
testcase_15 | AC | 38 ms
14,208 KB |
testcase_16 | AC | 35 ms
14,848 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 45 ms
19,328 KB |
testcase_20 | WA | - |
testcase_21 | AC | 1 ms
5,376 KB |
testcase_22 | AC | 1 ms
5,376 KB |
testcase_23 | AC | 2 ms
5,376 KB |
testcase_24 | AC | 1 ms
5,376 KB |
testcase_25 | AC | 2 ms
5,376 KB |
testcase_26 | AC | 2 ms
5,376 KB |
testcase_27 | AC | 1 ms
5,376 KB |
testcase_28 | AC | 1 ms
5,376 KB |
コンパイルメッセージ
/home/judge/data/code/Main.nim(1, 39) Warning: Use the new 'sugar' module instead; future is deprecated [Deprecated]
ソースコード
import strutils, sequtils, algorithm, future, tables, sets type PrirorityQueue*[T] = ref object of RootObj elms: seq[T] idxs: TableRef[T, int] cmp: (T, T) -> int proc newPriorityQueue*[T](cmp: (T, T) -> int): PrirorityQueue[T] = new(result) result.elms = newSeq[T]() result.idxs = newTable[T, int]() result.cmp = cmp template parent(cur: int): int = (cur - 1) div 2 template childl(cur: int): int = cur * 2 + 1 template childr(cur: int): int = cur * 2 + 2 proc innerDel[T](self: var PrirorityQueue[T], cur: int) = self.idxs.del(self.elms[cur]) self.elms.del(cur) proc innerSwap[T](self: var PrirorityQueue[T], s, t: int) = let (sval, tval) = (self.elms[s], self.elms[t]) swap(self.elms[s], self.elms[t]) swap(self.idxs[sval], self.idxs[tval]) proc upHeap[T](self: var PrirorityQueue[T], cur: var int) = var par = parent(cur) while par >= 0 and self.cmp(self.elms[cur], self.elms[par]) < 0: self.innerSwap(cur, par) (cur, par) = (par, parent(par)) proc downHeap[T](self: var PrirorityQueue[T], cur: var int) = var (chl, chr) = (childl(cur), childr(cur)) while chl < self.elms.len: var ch = if chr >= self.elms.len or self.cmp(self.elms[chl], self.elms[chr]) < 0: chl else: chr if self.cmp(self.elms[cur], self.elms[ch]) < 0: break self.innerSwap(cur, ch) (cur, chl, chr) = (ch, childl(cur), childr(cur)) proc len*[T](self: PrirorityQueue[T]): int = assert self.elms.len == self.idxs.len self.elms.len proc push*[T](self: var PrirorityQueue[T], data: T): bool {.discardable.} = if self.idxs.contains(data): return false var n = self.elms.len cur = n self.elms.setLen(n + 1) self.elms[cur] = data self.idxs[data] = cur self.upHeap(cur) return true proc peek*[T](self: var PrirorityQueue[T]): T = self.elms[0] proc pop*[T](self: var PrirorityQueue[T]): T = assert self.elms.len > 0 var n = self.elms.len cur = 0 result = self.elms[0] self.innerSwap(0, n-1) self.innerDel(n-1) self.downHeap(cur) proc del*[T](self: var PrirorityQueue[T], data: T) = if not self.idxs.contains(data): return let n = self.elms.len var idx = self.idxs[data] if idx == n - 1: self.innerDel(n-1) else: self.innerSwap(idx, n-1) self.innerDel(n-1) self.downHeap(idx) self.upHeap(idx) # ============================================================================== when isMainModule: var n = stdin.readLine.parseInt a = stdin.readLine.split.map(parseInt) b = newSeq[int](n) lastIdx = newTable[int, int]() pQ = newPriorityQueue[int]((x: int, y: int) => y - x) for i in 0..<n: lastIdx[a[i]] = i for i in 0..<n: pQ.push(a[i]) b[i] = pQ.peek() if i == lastIdx[a[i]]: pQ.del(a[i]) echo b.join(" ")