結果

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

テストケース

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

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define int long long
int n,a,b,ans;
signed main() {
	cin>>a>>b>>n;
	if(n==1) {
		cout<<0;
		return 0;
	}
	ans=a+(n-1)*b;
	for(int i=2;(1ll<<(i-1))<=n;i++) {
		priority_queue<int,vector<int>,greater<int> > p;
		int j=i,now=1;
		for(int k=1;k<=i;k++) {
			now*=2;
			p.push(2);
		}
		while(now<n) {
			int man=p.top();
			p.pop();
			now=now*(man+1)/man;
			j++;
			p.push(man+1);
		}
		ans=min(ans,a*i+b*j);
	}
	cout<<ans;
	return 0;
}
//log2^2
0