結果

問題 No.1862 Copy and Paste
ユーザー vjudge1vjudge1
提出日時 2024-11-26 14:52:46
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,926 bytes
コンパイル時間 3,811 ms
コンパイル使用メモリ 223,628 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-26 14:52:51
合計ジャッジ時間 3,463 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 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,816 KB
testcase_05 AC 2 ms
6,816 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 2 ms
6,820 KB
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 2 ms
6,816 KB
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 2 ms
6,816 KB
testcase_15 AC 2 ms
6,816 KB
testcase_16 AC 2 ms
6,820 KB
testcase_17 AC 2 ms
6,816 KB
testcase_18 AC 2 ms
6,816 KB
testcase_19 AC 2 ms
6,816 KB
testcase_20 AC 2 ms
6,820 KB
testcase_21 AC 2 ms
6,820 KB
testcase_22 AC 2 ms
6,816 KB
testcase_23 AC 2 ms
6,820 KB
testcase_24 AC 2 ms
6,816 KB
testcase_25 WA -
testcase_26 AC 2 ms
6,816 KB
testcase_27 AC 2 ms
6,820 KB
testcase_28 AC 2 ms
6,820 KB
testcase_29 AC 2 ms
6,816 KB
testcase_30 AC 2 ms
6,816 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:66:46: warning: 'ans' may be used uninitialized [-Wmaybe-uninitialized]
   66 |         ::ans = min(::ans, (__)a * i + (__)b * ans);
      |                                        ~~~~~~^~~~~
main.cpp:53:31: note: 'ans' was declared here
   53 |         ll l = i, r = n, mid, ans;
      |                               ^~~

ソースコード

diff #

#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#ifndef LOCAL
#define file_name ""
#define csf                                                                               \
    {                                                                                     \
        std::cerr.setstate(std::ios_base::failbit);                                       \
        if (file_name != "")                                                              \
            freopen(file_name ".in", "r", stdin), freopen(file_name ".out", "w", stdout); \
    }
#define db(x)
#else
#define db(x) cerr << __FUNCTION__ << " L" << __LINE__ << " " << #x " = " << (x) << endl
#define csf
#endif
#define ll long long
#define unordered_map __gnu_pbds::gp_hash_table
#define f(x, y, z) for (ll x = (y); x <= (z); x++)
inline ll read();
using namespace std;
using __ = __int128;
const long long INF = 0x3f3f3f3f3f3f3f3f, M = 65;
ll n, a, b;
__ ans = INF;

bool check(ll x, ll y)
{ //?????
    ll a = y / x, b = y % x;

    __ res = 1;
    f(i, 1, x - b)
    {
        res *= a + 1;
        if (res > 1e18)
            return 1;
    }
    f(i, 1, b)
    {
        res *= a + 2;
        if (res > 1e18)
            return 1;
    }
    return res >= n;
}
signed main()
{
    csf;
    cin>>a>>b>>n;

    f(i, 1, 65)
    { //?????

        ll l = i, r = n, mid, ans;
        while (l <= r)
        {
            mid = (l + r) / 2;
            if (check(i, mid))
            {
                ans = mid;
                r = mid - 1;
            }
            else
                l = mid + 1;
        }

        ::ans = min(::ans, (__)a * i + (__)b * ans);
    }
    cout << (ll)ans << endl;
    return 0;
}
/*
?????????

??????

????? 1 ????????? 3 ????23??????

????????????????w????v????????????v/w?????

???k???

???? x + k * y???? k + 1

x = 3, y = 1


k = 3

4 / 6

6 / 8

---------------

???????

???????

??????

???????????
*/
0