結果

問題 No.1862 Copy and Paste
ユーザー Bryson NgBryson Ng
提出日時 2024-05-01 23:41:40
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 1,183 ms / 2,000 ms
コード長 516 bytes
コンパイル時間 4,304 ms
コンパイル使用メモリ 278,728 KB
実行使用メモリ 5,896 KB
最終ジャッジ日時 2024-05-01 23:42:04
合計ジャッジ時間 21,106 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1,009 ms
5,640 KB
testcase_10 AC 71 ms
5,376 KB
testcase_11 AC 1,098 ms
5,768 KB
testcase_12 AC 651 ms
5,376 KB
testcase_13 AC 1,078 ms
5,768 KB
testcase_14 AC 57 ms
5,376 KB
testcase_15 AC 521 ms
5,376 KB
testcase_16 AC 1,016 ms
5,636 KB
testcase_17 AC 527 ms
5,376 KB
testcase_18 AC 315 ms
5,376 KB
testcase_19 AC 1,048 ms
5,896 KB
testcase_20 AC 950 ms
5,636 KB
testcase_21 AC 606 ms
5,376 KB
testcase_22 AC 977 ms
5,640 KB
testcase_23 AC 915 ms
5,512 KB
testcase_24 AC 1,180 ms
5,892 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 1,182 ms
5,808 KB
testcase_27 AC 1,169 ms
5,768 KB
testcase_28 AC 1,183 ms
5,804 KB
testcase_29 AC 922 ms
5,512 KB
testcase_30 AC 128 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ll a, b;
unordered_map<int, ll> mp;

ll solve(int n) {
	if (n == 1) return 0;
	if (mp.find(n) != mp.end()) return mp[n];
	ll ans = (n - 1) * b + a;
	for (auto i = 2; i * i <= n; ++i) {
		auto temp = (n + i - 1) / i;
		auto tmp1 = solve(temp) + b * (i - 1) + a;
		auto tmp2 = solve(i) + b * (temp - 1) + a;
		ans = min({ ans, tmp1, tmp2 });
	}
	return mp[n] = ans;
}

int main(){
	int n; cin >> a >> b >> n;
	cout << solve(n) << endl;

	return 0;
}
0