結果

問題 No.1862 Copy and Paste
ユーザー vjudge1vjudge1
提出日時 2024-05-01 23:27:54
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 874 bytes
コンパイル時間 6,458 ms
コンパイル使用メモリ 276,832 KB
実行使用メモリ 10,140 KB
最終ジャッジ日時 2024-05-01 23:28:05
合計ジャッジ時間 7,381 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

// Source: https://usaco.guide/general/io

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

int main() {
	// yeeettt
	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 answer = a + (n - 1) * b;
	// iterate
	for (int use1 = 2; (1 << (use1 - 1)) <= n; use1++) {
		// dedlaratiom
		priority_queue<int, vector<int>, greater<int>> pq;
		int duck = 1;
		int use2 = use1;
		for (int i = 1; i <= use1; i++) duck *= 2;
		for (int i = 1; i <= use1; i++) pq.push(2);

		// reiterate
		while (duck < n) {
			int now = pq.top();
			pq.pop();
			duck *= now + 1;
			duck /= now;
			use2 += 1;
			pq.push(now + 1);
		}

		// find the smallest valid one
		answer = min(answer, a * use1 + b * use2);
	}

	// final nail to the cofin
	cout << answer << endl;

	return 0;
}
0