結果

問題 No.1862 Copy and Paste
ユーザー vjudge1vjudge1
提出日時 2024-11-13 21:58:22
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,213 bytes
コンパイル時間 1,073 ms
コンパイル使用メモリ 81,656 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-13 21:58:25
合計ジャッジ時間 2,340 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<iostream>
#include<cmath>
#include<cstdio>
#include<cassert>
#define int __int128
using namespace std;
int qpow(int x,int y)
{
	if(y == 0) return 1;
	int k = qpow(x,y / 2);
	if(y & 1) return k * k * x;
	else return k * k;
}
inline int read()
{
	int x = 0, f = 1;
	char ch = getchar();
	while(!isdigit(ch))
	{
		if(ch == '-') f = -1;
		ch = getchar();
	}
	while(isdigit(ch))
	{
		x = (x << 3) + (x << 1) + (ch ^ 48);
		ch = getchar();
	}
	return x * f;
}
void write(__int128 x)
{
	if(x < 10) putchar('0' + x);
	else write(x / 10), putchar('0' + x % 10);
}
signed main()
{
	long long n,x,y;
	__int128 ans = 9e18 + 1 + 1;
//	n = read(); x = read(); y = read();
	cin >> n >> x >> y;
	int up = log(n) / log(2) + 1;
//	cout << up << endl;
	for(int i = 1; i <= up; i++)
	{
//		assert(pow(n,1.0 / i)>=0);
		int u = floor(pow(n,1.0 / i)) + 1, cnt = 0;
		__int128 xm = 1;
		for(int j = 1; j <= i; j++) xm *= u;
//		assert(xm>=0);
		while(xm >= n)
		{
			xm /= u;
			xm *= (u - 1);
			cnt++;
		}
		xm /= (u - 1);
		xm *= u;
//		assert(xm>=0);
		cnt--;
		ans = min(ans, (__int128)i * x + (__int128)cnt * (u - 2) * y + (__int128)(i - cnt) * (u - 1) * y);
//		assert(ans>=0);
	}
	write(ans);
cout << endl;
	return 0;
}
0