結果

問題 No.915 Plus Or Multiple Operation
ユーザー ningenMeningenMe
提出日時 2019-10-12 16:47:57
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,598 bytes
コンパイル時間 1,678 ms
コンパイル使用メモリ 167,844 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-24 18:30:13
合計ジャッジ時間 2,184 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

template <class T> void chmin(T& a, const T b){a=min(a,b);}

int main() {
    long long A,B,C,D; cin >> A >> B >> C;
    assert(1<=A&&A<=1000000000LL);
    assert(1<=B&&B<=1000000000LL);
    assert(1<=C&&C<=1000000000LL);

    //C=1の場合はコーナーケース
    if(C==1){
        cout << -1 << endl;
        return 0;
    }
    
    //AをC進数に直す O(logA)
    vector<long long> bit;
    D = A;
    while(D>0){
        bit.push_back(D%C);
        D /= C;
    }
    reverse(bit.begin(),bit.end());
    
    int M = bit.size();
    vector<long long> sum(M+1,0);    //上からi桁目まで構築したときの和: 1-indexed
    vector<long long> powC(M,1);     //Cの冪数
    vector<long long> dp(M+1,A);     //dp_i:上からi桁目まで構築したときの最小コスト
    
    //sum,powを前計算
    for(int i = 1; i < M; ++i) powC[i] = powC[i-1]*C;
    for(int i = 1; i <= M; ++i) {
        for(int j = 0; j < i; ++j) {
            sum[i] += bit[j]*powC[i-j-1];
        }
    }

    dp[0] = 0;
    for(int i = 0; i < M; ++i) {
        //積で次に遷移
        if(sum[i]*C==sum[i+1]) chmin(dp[i+1],dp[i]+1);
        //和で次に遷移
        if(sum[i]+C-1>=sum[i+1]) chmin(dp[i+1],dp[i]+1);
        //積+和で次に遷移
        if(sum[i]*C+C-1>=sum[i+1]) chmin(dp[i+1],dp[i]+2);
        //和+和で次の次に遷移
        if(i+2<=M&&sum[i]+2*C-2>=sum[i+2]) chmin(dp[i+2],dp[i]+2);
    }

    long long ans = dp[M]*B;
    assert(1<=ans&&ans<=1000000000000000000LL);
    cout << ans << endl;
    return 0;
}
0