結果
問題 | No.9 モンスターのレベル上げ |
ユーザー | むらため |
提出日時 | 2019-01-28 07:19:37 |
言語 | Nim (2.0.2) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,383 bytes |
コンパイル時間 | 3,486 ms |
コンパイル使用メモリ | 82,052 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-01 11:04:09 |
合計ジャッジ時間 | 4,842 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 80 ms
6,940 KB |
testcase_03 | AC | 59 ms
6,944 KB |
testcase_04 | AC | 35 ms
6,944 KB |
testcase_05 | AC | 26 ms
6,940 KB |
testcase_06 | AC | 6 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 9 ms
6,940 KB |
testcase_09 | AC | 69 ms
6,944 KB |
testcase_10 | AC | 1 ms
6,948 KB |
testcase_11 | AC | 95 ms
6,940 KB |
testcase_12 | AC | 39 ms
6,940 KB |
testcase_13 | AC | 5 ms
6,940 KB |
testcase_14 | AC | 66 ms
6,944 KB |
testcase_15 | AC | 73 ms
6,944 KB |
testcase_16 | WA | - |
testcase_17 | AC | 50 ms
6,940 KB |
testcase_18 | AC | 40 ms
6,940 KB |
testcase_19 | AC | 3 ms
6,944 KB |
ソースコード
import sequtils,algorithm,random,times # GC_disableMarkAndSweep() template times*(n:int,body) = (for _ in 0..<n: body) template `min=`*(x,y) = x = min(x,y) proc getchar_unlocked():char {. importc:"getchar_unlocked",header: "<stdio.h>" .} proc scan(): int = while true: let k = getchar_unlocked() if k < '0': break result = 10 * result + k.ord - '0'.ord type Heap*[T] = object nodes: seq[T] compare: proc(x,y:T):int proc newHeap*[T](compare:proc(x,y:T):int): Heap[T] = Heap[T](nodes:newSeq[T](),compare:compare) proc compareNode[T](h:Heap[T],i,j:int): int {.inline.}= h.compare(h.nodes[i],h.nodes[j]) proc size*[T](h:Heap[T]):int = h.nodes.len() proc items*[T](h:Heap[T]):seq[T] = h.nodes proc top*[T](h:Heap[T]): T = h.nodes[0] proc push*[T](h:var Heap[T],node:T):void = h.nodes.add(node) #末尾に追加 var i = h.nodes.len() - 1 while i > 0: # 末尾から木を整形 let parent = (i - 1) div 2 if h.compare(h.nodes[parent],node) <= 0: break h.nodes[i] = h.nodes[parent] i = parent h.nodes[i] = node proc shiftdown*[T](h:var Heap[T]): void = let size = h.nodes.len() var i = 0 while true : let L = i * 2 + 1 let R = i * 2 + 2 if L >= size : break let child = if R < size and h.compareNode(R,L) <= 0 : R else: L if h.compareNode(i,child) <= 0: break swap(h.nodes[i],h.nodes[child]) i = child proc pop*[T](h:var Heap[T]):T = result = h.nodes[0] # rootと末尾を入れ替えて木を整形 h.nodes[0] = h.nodes[^1] h.nodes.setLen(h.nodes.len() - 1) h.shiftdown() proc replaceTop*[T](h:var Heap[T],node:T):void = h.nodes[0] = node h.shiftdown() let n = scan() # 一番レベルの低い 一番戦ってないものを戦わせる type monster = tuple[lv:int,cnt:int] var myInitialHeap = newHeap( proc (a,b:monster):int = if a.lv == b.lv : a.cnt - b.cnt else: a.lv - b.lv ) let A = newSeqWith(n,scan()).sorted(cmp) let B = newSeqWith(n,scan() shr 1) # enemy for i in 0..<n : myInitialHeap.push((A[i] ,0)) var i = rand(n) var nMax = n div 2 if n < 100 : i = 0 nMax = n var ans = 1e12.int nMax.times: var myHeap = myInitialHeap var mx = 0 for j in 0..<n: let b = B[(i + j) mod n] var me = myHeap.top() me.lv += b me.cnt += 1 myHeap.replaceTop(me) if me.cnt > mx : mx = me.cnt if ans <= mx: break ans .min= mx i += 1 echo ans