結果
問題 | No.3 ビットすごろく |
ユーザー | AAAR Salmon |
提出日時 | 2021-01-16 00:52:21 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 47 ms / 5,000 ms |
コード長 | 640 bytes |
コンパイル時間 | 100 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 11,264 KB |
最終ジャッジ日時 | 2024-07-01 10:02:12 |
合計ジャッジ時間 | 2,368 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 33 |
ソースコード
import sys import math from math import sin, cos, tan from functools import reduce from collections import deque import heapq sys.setrecursionlimit(1000000) intm1 = lambda x:int(x)-1 def popcount(x): assert(0 <= x <= 0xFFFFFFFF) x = x - (x >> 1 & 0x55555555) x = (x & 0x33333333) + (x >> 2 & 0x33333333) x = (x + (x >> 4)) & 0x0f0f0f0f x = (x + (x >> 8)) & 0x00ff00ff x = (x + (x >> 16)) & 0x0000ffff return x N = int(input()) dp = [-1] * (N + 1) dp[1] = 1 q = deque([1]) while q: c = q.popleft() d = popcount(c) for mv in [d, -d]: if 1 <= c+mv <= N and dp[c+mv] == -1: dp[c+mv] = dp[c] + 1 q.append(c+mv) print(dp[N])