結果
問題 | No.120 傾向と対策:門松列(その1) |
ユーザー | むらため |
提出日時 | 2019-01-23 15:21:55 |
言語 | Nim (2.0.2) |
結果 |
CE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 2,184 bytes |
コンパイル時間 | 700 ms |
コンパイル使用メモリ | 52,564 KB |
最終ジャッジ日時 | 2024-11-14 20:47:33 |
合計ジャッジ時間 | 1,275 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
コンパイルメッセージ
/home/judge/data/code/Main.nim(2, 21) Error: cannot open file: queues
ソースコード
import sequtils,algorithm,math,tables import sets,intsets,queues,heapqueue,bitops,strutils template times*(n:int,body) = (for _ in 0..<n: body) template `max=`*(x,y) = x = max(x,y) 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 proc putchar_unlocked(c:char){. importc:"putchar_unlocked",header: "<stdio.h>" .} proc printInt(a:int32) = if a == 0: putchar_unlocked('0') return template div10(a:int32) : int32 = cast[int32]((0x1999999A * cast[int64](a)) shr 32) template mod10(a:int32) : int32 = a - (a.div10 * 10) var n = a var rev = a var cnt = 0 while rev.mod10 == 0: cnt += 1 rev = rev.div10 rev = 0 while n != 0: rev = rev * 10 + n.mod10 n = n.div10 while rev != 0: putchar_unlocked((rev.mod10 + '0'.ord).chr) rev = rev.div10 while cnt != 0: putchar_unlocked('0') cnt -= 1 proc printInt(a:int,last:char) = a.int32.printInt() putchar_unlocked(last) # type # CPriorityQueue {.importcpp: "std::priority_queue", header: "<queue>".} [T] = object # proc cNewPriorityQueue(T: typedesc): CPriorityQueue[T] # {.importcpp: "std::priority_queue<'*1>()", nodecl.} # proc newPriorityQueue*[T](): CPriorityQueue[T] = cNewPriorityQueue(T) # proc size*[T](this: CPriorityQueue[T]):int {.importcpp: "#.size(@)", nodecl.} # proc push*[T](this: CPriorityQueue[T],x:T) {.importcpp: "#.push(@)", nodecl.} # proc top*[T](this: CPriorityQueue[T]): T {.importcpp: "#.top()", nodecl.} # proc pop*[T](this: CPriorityQueue[T]){.importcpp: "#.pop()", nodecl.} proc solve() : int = let n = scan() let L = newSeqWith(n,scan()).sorted(cmp) var R = @[1] for i in 1..<n: if L[i-1] == L[i] : R[^1] += 1 else: R &= 1 if R.len < 3: return var q = newHeapQueue[int]() for r in R: q.push(-r) while true: let a = -q.pop() - 1 let b = -q.pop() - 1 let c = -q.pop() - 1 if a < 0 or b < 0 or c < 0 : return result += 1 q.push(-a) q.push(-b) q.push(-c) scan().times: solve().printInt('\n')