結果

問題 No.1862 Copy and Paste
ユーザー vjudge1vjudge1
提出日時 2024-11-13 21:57:09
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,274 bytes
コンパイル時間 842 ms
コンパイル使用メモリ 72,124 KB
実行使用メモリ 13,760 KB
最終ジャッジ日時 2024-11-13 21:57:14
合計ジャッジ時間 5,019 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <cstdint>
#include <algorithm>
#include <cmath>
using namespace std;

const int MAXN = 1e5 + 10; // 55pts
const int64_t INF = 1e18;
int64_t f[MAXN];
int k_v[MAXN];

int64_t fstpow(int a, int k)
{
    if (k == 0)
        return 1;
    if (k == 1)
        return a;
    int64_t tmp = fstpow(a, k / 2);
    if (tmp < 0)
        return -1;
    if (k % 2 == 0)
        return tmp * tmp;
    else
        return tmp * tmp * a;
}

int64_t rpow(int64_t a, int64_t k)
{
    int64_t l = 1, r = a;
    while (l < r)
    {
        int64_t mid = (l + r) / 2;
        int64_t t = fstpow(mid, k);
        if (t < a && t > 0)
            l = mid + 1;
        else
            r = mid;
    }
    return l;
}

int main()
{
    // freopen("dice.in", "r", stdin);
    // freopen("dice.out", "w", stdout);
    int64_t n, x, y;
    // cin >> n >> x >> y;
    int64_t ans = INF;
    cin >> x >> y >> n;
    n -= 1;
    for (int i = 1; (1 << i) < n * 2; ++i)
    {
        int64_t v = rpow(n, i);
        int64_t lst = fstpow(v, i - 1);
        int64_t now = i * x + (i - 1) * y * (v - 1) + ((int64_t)floor((double)n / lst)) * y;
        cerr << "dbg: " << i << " " << v << " " << now << "\n";
        ans = min(ans, now);
    }
    cout << ans << "\n";
    return 0;
}
0