結果

問題 No.915 Plus Or Multiple Operation
ユーザー onigawara_kypronigawara_kypr
提出日時 2019-10-26 13:11:41
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 1,893 bytes
コンパイル時間 1,149 ms
コンパイル使用メモリ 104,844 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-24 18:52:11
合計ジャッジ時間 1,604 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <array>
#include <algorithm>
#include <vector>
#include <set>
#include <unordered_set>
#include <cmath>
#include <complex>
#include <deque>
#include <iterator>
#include <numeric>
#include <map>
#include <unordered_map>
#include <queue>
#include <stack>
#include <string>
#include <tuple>
#include <utility>
#include <limits>
#include <iomanip>
using namespace std;

using ll=long long;
template<class T> using V = vector<T>;
template<class T, class U> using P = pair<T, U>;
using vll = V<ll>;
using vvll = V<vll>;
#define rep(i, k, n) for (ll i=k; i<(ll)n; ++i)
#define REP(i, n) rep(i, 0, n)
#define ALL(v) v.begin(),v.end()
template<class T> inline bool chmax(T& a, T b) {if (a<b) {a=b; return true;} return false;}
template<class T> inline bool chmin(T& a, T b) {if (a>b) {a=b; return true;} return false;}

const ll MOD = 1000000007;
const ll HIGHINF = (ll)1e18;

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);
    ll q; cin >> q;
    while (q-->0) {
        ll a, b, c; cin >> a >> b >> c;
        if (c==1) cout << "-1\n";
        else {
            ll tmpa = a;
            vll bit;
            while (tmpa>0) {
                bit.push_back(tmpa%c);
                tmpa /= c;
            }
            reverse(ALL(bit));

            ll m = bit.size();
            vll sum(m+1, 0), powC(m, 1), dp(m+1, a);
            rep(i, 1, m) powC[i] = powC[i-1]*c;
            rep(i, 1, m+1) REP(j, i) sum[i] += bit[j]*powC[i-j-1];

            dp[0] = 0;
            REP(i, m) {
                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);
            }
            cout << dp[m]*b << '\n';
        }
    }
    return 0;
}
0