結果

問題 No.1862 Copy and Paste
ユーザー vjudge1vjudge1
提出日時 2024-11-13 22:05:06
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 1,134 bytes
コンパイル時間 2,074 ms
コンパイル使用メモリ 171,908 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-13 22:05:11
合計ジャッジ時間 3,482 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 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 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 3 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 2 ms
5,248 KB
testcase_28 AC 2 ms
5,248 KB
testcase_29 AC 2 ms
5,248 KB
testcase_30 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define int __int128
using namespace std;
int read()
{
	int ans=0,fh=1;
	char ch=getchar();
	while(ch>'9'||ch<'0')
	{
		if(ch=='-') fh=-1;
		ch=getchar();
	}
	while(ch>='0'&&ch<='9')
	{
		ans=ans*10+ch-'0';
		ch=getchar();
	}
	return ans*fh;
}
const int INF=1e18;
int n;
int logg(int n)
{
	int cnt=0;
	int tmp=1;
	while(tmp<=n)
	{
		tmp*=2;
		cnt++;
	}
	return cnt;
}

int xs(int x,int y)
{
	if(x%y) return x/y+1;
	else return x/y;
}
int ksm(int x,int k)
{
	if(k==0) return 1;
	int res=ksm(x,k/2);
	if(res>=n) return n;
	if(k%2) return res*res*x;
	return res*res;
}
int erfen(int x)
{
	int l=1,r=n;
	while(l<=r)
	{
		int mid=(l+r)>>1;
		if(ksm(mid,x)>=n) r=mid-1;
		else l=mid+1;
	}
	int ans=l*x;
	for(int i=1;i<=x;i++)
	{
		if(ksm(l,x-i)*ksm(l-1,i)>=n) ans--;
		else break;
	}
	return ans-x;
}
void print(int n)
{
	if(n>=10) print(n/10);
	putchar(n%10+'0');
	return;
}
signed main()
{
//	freopen("dice.in","r",stdin);
//	freopen("dice.out","w",stdout);
	int x,y;
	x=read();y=read();n=read();
	int lg=logg(n);
	int ans=INF;
	for(int i=1;i<=lg;i++)
	{
		ans=min(ans,erfen(i)*y+i*x);
	}
	print(ans);
	return 0;
}
0