結果
問題 | No.3 ビットすごろく |
ユーザー | opqopq_ |
提出日時 | 2015-04-29 23:09:14 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 671 bytes |
コンパイル時間 | 441 ms |
コンパイル使用メモリ | 56,156 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-01 07:20:08 |
合計ジャッジ時間 | 1,373 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 33 |
ソースコード
#include <iostream> #include <algorithm> using namespace std; #define MAX 10100 #define INF 1000000007 int N; int dp[MAX + 1]; void dfs(int now) { int cnt = __builtin_popcount(now); int next1 = -1, next2 = -1; if (now + cnt <= N) { if (dp[now] + 1 < dp[now + cnt]) { dp[now + cnt] = dp[now] + 1; next1 = now + cnt; } } if (0 < now - cnt) { if (dp[now] + 1 < dp[now - cnt]) { dp[now - cnt] = dp[now] + 1; next2 = now - cnt; } } if (0 < next1) dfs(next1); if (0 < next2) dfs(next2); } int main() { cin >> N; for (int i = 2; i <= N; i++) dp[i] = INF; dp[1] = 1; dfs(1); cout << (dp[N] == INF ? -1 : dp[N]) << '\n'; return 0; }