結果

問題 No.642 Two Operations No.1
ユーザー ldsybldsyb
提出日時 2018-02-02 21:30:45
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 4 ms / 2,000 ms
コード長 420 bytes
コンパイル時間 1,840 ms
コンパイル使用メモリ 174,092 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-12-31 07:11:44
合計ジャッジ時間 2,351 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 15
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
	int64_t n;
	cin >> n;
	set<int64_t> s;
	s.insert(n);
	for (int64_t ans = 0; ; ans++) {
		if (s.empty()) {
			cout << -1 << endl;
			return 0;
		}
		set<int64_t> next;
		for (auto &i : s) {
			if (i == 1) {
				cout << ans << endl;
				return 0;
			}
			next.insert(i + 1);
			if (i % 2 == 0) {
				next.insert(i / 2);
			}
		}
		swap(s, next);
	}
	return 0;
}
0