結果

問題 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,164 ms / 2,000 ms
コード長 516 bytes
コンパイル時間 3,552 ms
コンパイル使用メモリ 278,992 KB
実行使用メモリ 6,028 KB
最終ジャッジ日時 2024-11-22 07:57:17
合計ジャッジ時間 20,717 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 0 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 3 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 983 ms
5,768 KB
testcase_10 AC 71 ms
5,248 KB
testcase_11 AC 1,057 ms
6,024 KB
testcase_12 AC 651 ms
5,632 KB
testcase_13 AC 1,046 ms
5,896 KB
testcase_14 AC 58 ms
5,248 KB
testcase_15 AC 515 ms
5,248 KB
testcase_16 AC 985 ms
5,640 KB
testcase_17 AC 496 ms
5,248 KB
testcase_18 AC 314 ms
5,248 KB
testcase_19 AC 1,037 ms
6,024 KB
testcase_20 AC 920 ms
5,640 KB
testcase_21 AC 602 ms
5,248 KB
testcase_22 AC 919 ms
5,640 KB
testcase_23 AC 919 ms
5,640 KB
testcase_24 AC 1,137 ms
6,020 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 1,151 ms
6,020 KB
testcase_27 AC 1,150 ms
5,892 KB
testcase_28 AC 1,164 ms
6,028 KB
testcase_29 AC 902 ms
5,516 KB
testcase_30 AC 128 ms
5,248 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