結果

問題 No.1862 Copy and Paste
ユーザー vjudge1vjudge1
提出日時 2024-11-13 09:25:21
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 531 bytes
コンパイル時間 900 ms
コンパイル使用メモリ 78,736 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-13 09:25:23
合計ジャッジ時間 2,382 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<iostream>
#include<queue>
using namespace std;
long long a,b;
long long n;
int main(){
	cin >> a >> b >> n;
	if(n==1){
		cout << 0;
		return 0;
	}
	long long ans=a+(n-1)*b;
	for(int i=2;(1ll<<(i-1))<=n;i++){
		priority_queue<int,vector<int>,greater<int>> p;
		long long pr=1;
		int j=i;
		for(int k=1;k<=i;k++){
			pr*=2;
		}
		for(int k=1;k<=i;k++){
			p.push(2);
		}
		while(pr<n){
			auto fnt=p.top();
			p.pop();
			pr=pr*(fnt+1)/fnt;
			++j;
			p.push(fnt+1);
		}
		ans=min(ans,a*i+b*j);
	}
	cout << ans;
	return 0;
}
0