結果

問題 No.1862 Copy and Paste
ユーザー vjudge1vjudge1
提出日時 2024-05-01 23:43:08
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 1,164 ms / 2,000 ms
コード長 559 bytes
コンパイル時間 3,858 ms
コンパイル使用メモリ 279,764 KB
実行使用メモリ 5,896 KB
最終ジャッジ日時 2024-05-01 23:43:33
合計ジャッジ時間 21,379 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 3 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 993 ms
5,512 KB
testcase_10 AC 72 ms
5,376 KB
testcase_11 AC 1,084 ms
5,896 KB
testcase_12 AC 657 ms
5,504 KB
testcase_13 AC 1,081 ms
5,768 KB
testcase_14 AC 57 ms
5,376 KB
testcase_15 AC 523 ms
5,376 KB
testcase_16 AC 999 ms
5,772 KB
testcase_17 AC 504 ms
5,376 KB
testcase_18 AC 314 ms
5,376 KB
testcase_19 AC 1,043 ms
5,768 KB
testcase_20 AC 917 ms
5,644 KB
testcase_21 AC 608 ms
5,376 KB
testcase_22 AC 934 ms
5,768 KB
testcase_23 AC 965 ms
5,512 KB
testcase_24 AC 1,164 ms
5,896 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 1,152 ms
5,772 KB
testcase_27 AC 1,150 ms
5,896 KB
testcase_28 AC 1,149 ms
5,768 KB
testcase_29 AC 937 ms
5,516 KB
testcase_30 AC 129 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#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