結果

問題 No.3 ビットすごろく
ユーザー むらためむらため
提出日時 2017-07-30 09:12:31
言語 Nim
(2.0.2)
結果
CE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,642 bytes
コンパイル時間 834 ms
コンパイル使用メモリ 68,704 KB
最終ジャッジ日時 2024-04-27 02:28:24
合計ジャッジ時間 1,226 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。

コンパイルメッセージ
/home/judge/data/code/Main.nim(25, 1) template/generic instantiation of `main` from here
/home/judge/data/code/Main.nim(2, 52) Warning: Use the new 'sugar' module instead; future is deprecated [Deprecated]
/home/judge/data/code/Main.nim(25, 1) template/generic instantiation of `main` from here
/home/judge/data/code/Main.nim(2, 64) Error: cannot open file: queues

ソースコード

diff #

template main(MAIN_BODY:untyped):untyped =
  import sequtils,strutils,strscans,algorithm,math,future,sets,queues,tables
  template get():string = stdin.readLine()
  template times(n:int,body:untyped): untyped = (for _ in 0..<n: body)
  template rep(i:untyped,n:int,body:untyped):untyped =
    block:(var i = 0; while i < n:( body; i += 1))
  template each[T](arr:var seq[T],elem,body:untyped):untyped =
    for _ in 0..<arr.len:(proc (elem:var T):auto = body)(arr[_])
  template  `+=`(x,y:typed):void = x = x + y
  template  `-=`(x,y:typed):void = x = x - y
  template  `*=`(x,y:typed):void = x = x * y
  template  `/=`(x,y:typed):void = x = x / y
  template  `%=`(x,y:typed):void = x = x mod y
  template `//=`(x,y:typed):void = x = x div y
  proc popcount(n:int):cint{.importC: "__builtin_popcount", noDecl .} # sum of "1"
  proc clz(n:int):cint{.importC: "__builtin_clz", noDecl .} # <0000>10 -> 4
  proc ctz(n:int):cint{.importC: "__builtin_ctz", noDecl .} # 01<0000> -> 4
  if isMainModule:
    MAIN_BODY

#close = initTable[int,int]() # hash is slow
#if not (succ in close): # hash is slow
#let diff = n.toBin(64).count('1') # string is slow

main:
  let N = get().parseInt
  var
    open = initQueue[int]() # n
    close = newSeqWith(N+1,-1)# depth
    resdepth = 0
  open.add(1)  # 1 *-> N
  close[1] = 1
  while open.len > 0:
    let
      n = open.pop()
      depth = close[n]
    if n == N:
      echo depth
      quit()
    let diff = popcount(n)
    for succ in @[n + diff,n - diff]:
      if succ > N or succ < 1:
        continue
      if close[succ] == -1:
        close[succ] = depth + 1
        open.enqueue(succ)
  echo -1
0