結果

問題 No.1862 Copy and Paste
ユーザー Bryson NgBryson Ng
提出日時 2024-05-01 23:31:31
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 730 bytes
コンパイル時間 3,454 ms
コンパイル使用メモリ 277,456 KB
実行使用メモリ 13,824 KB
最終ジャッジ日時 2024-11-22 07:38:15
合計ジャッジ時間 67,684 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,632 KB
testcase_01 AC 2 ms
9,892 KB
testcase_02 AC 2 ms
9,892 KB
testcase_03 AC 2 ms
10,152 KB
testcase_04 AC 2 ms
10,020 KB
testcase_05 AC 2 ms
10,020 KB
testcase_06 AC 2 ms
13,636 KB
testcase_07 AC 2 ms
10,020 KB
testcase_08 AC 2 ms
13,640 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 2 ms
8,448 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

void solve(){
	
}

int main() {
	ios_base::sync_with_stdio(0);
	cin.tie(0);
	cout.tie(0);
	// iad
	int a, b, n;
	cin >> a >> b >> n;
	if (n == 1) {
		cout << 0 << endl;
		return 0;
	}
	// temp answer
	int ans = a + (n - 1) * b;
	for (int use_1 = 2; (1 << (use_1 - 1)) <= n; use_1++) {
		priority_queue<int, vector<int>, greater<int>> pq;
		int duck = 1;
		int use_2 = use_1;
		for (int i = 1; i <= use_1; i++) duck *= 2;
		for (int i = 1; i <= use_1; i++) pq.push(2);
		while (duck < n) {
			int cur = pq.top();
			pq.pop();
			duck *= cur + 1;
			duck /= cur;
			use_2 += 1;
			pq.push(cur + 1);
		}
		
		ans = min(ans, a * use_1 + b * use_2);
	}
	cout << ans << endl;
	return 0;
}
0