結果
問題 | No.915 Plus Or Multiple Operation |
ユーザー | ningenMe |
提出日時 | 2019-10-12 17:39:24 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,865 bytes |
コンパイル時間 | 1,694 ms |
コンパイル使用メモリ | 173,160 KB |
実行使用メモリ | 814,728 KB |
最終ジャッジ日時 | 2024-11-07 03:20:06 |
合計ジャッジ時間 | 7,838 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | MLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; template <class T> void chmin(T& a, const T b){a=min(a,b);} int main() { int Q; cin >> Q; assert(1<=Q&&Q<=20); while(Q--){ 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; // continue; // } //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; }