結果

問題 No.1862 Copy and Paste
ユーザー Bryson Ng
提出日時 2024-05-01 23:35:38
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 810 bytes
コンパイル時間 3,476 ms
コンパイル使用メモリ 277,564 KB
実行使用メモリ 13,824 KB
最終ジャッジ日時 2024-11-22 07:45:58
合計ジャッジ時間 67,642 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 6 TLE * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

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

void solve() {
	int a, b, n;
	cin >> a >> b >> n;
	// if your lucky
	if (n == 1) {
		cout << 0 << endl;
		return;
	}
	// temp answer
	int answer = a + (n - 1) * b;
	// start iterating
	for (int use_a = 2; (1 << (use_a - 1)) <= n; use_a++) {
		priority_queue<int, vector<int>, greater<int>> pq;
		int pr = 1;
		int use_b = use_a;
		for (int i = 1; i <= use_a; i++) pr *= 2;
		for (int i = 1; i <= use_a; i++) pq.push(2);
		while (pr < n) {
			int cur = pq.top();
			pq.pop();
			pr *= cur + 1;
			pr /= cur;
			use_b += 1;
			pq.push(cur + 1);
		}
		// looking for min
		answer = min(answer, a * use_a + b * use_b);
	}
	// couting final answer
	cout << answer << endl;
}

int main() {
	ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
	solve();

	return 0;
}
0