結果

問題 No.3 ビットすごろく
ユーザー elpheelphe
提出日時 2024-08-09 20:04:09
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 3 ms / 5,000 ms
コード長 868 bytes
コンパイル時間 838 ms
コンパイル使用メモリ 80,240 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-08-09 20:04:12
合計ジャッジ時間 2,185 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 1 ms
6,944 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 2 ms
6,944 KB
testcase_25 AC 1 ms
6,940 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 1 ms
6,944 KB
testcase_28 AC 3 ms
6,944 KB
testcase_29 AC 2 ms
6,944 KB
testcase_30 AC 1 ms
6,940 KB
testcase_31 AC 2 ms
6,940 KB
testcase_32 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdint>
#include <vector>
#include <queue>

using namespace std;

constexpr int16_t pop_count(const int16_t a)
{
	return a == INT16_C(0) ? INT16_C(0) : (a & INT16_C(1)) + pop_count(a >> INT16_C(1));
}

int main()
{
	cin.tie(nullptr);
	ios::sync_with_stdio(false);

	int16_t N, i;
	cin >> N;
	vector<int16_t> dp(N, INT16_C(-1));
	dp[0] = INT16_C(1);
	queue<int16_t> q;
	q.push(INT16_C(0));

	while (!q.empty())
	{
		const auto temp = pop_count(q.front() + INT16_C(1));
		if (q.front() - temp >= INT16_C(0) && dp[q.front() - temp] == INT16_C(-1))
			dp[q.front() - temp] = dp[q.front()] + INT16_C(1), q.push(q.front() - temp);
		if (q.front() + temp < N && dp[q.front() + temp] == INT16_C(-1))
			dp[q.front() + temp] = dp[q.front()] + INT16_C(1), q.push(q.front() + temp);

		q.pop();
	}

	cout << dp[N - INT16_C(1)] << '\n';
	return 0;
}
0