結果
| 問題 |
No.915 Plus Or Multiple Operation
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2019-10-25 21:50:33 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 885 bytes |
| コンパイル時間 | 1,608 ms |
| コンパイル使用メモリ | 170,892 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-11-07 03:25:59 |
| 合計ジャッジ時間 | 2,198 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 8 WA * 2 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
void chmin(int64_t& a, int64_t b){
a = min(a, b);
};
int main(){
int Q;
cin >> Q;
while(Q--){
int64_t A, B, C;
cin >> A >> B >> C;
if(C == 1){
cout << -1 << endl;
break;
}
vector<int> nums;
while(A){
nums.push_back(A%C);
A /= C;
}
reverse(nums.begin(), nums.end());
int sz = nums.size();
vector<int64_t> dp(sz+1, 1e9);
dp[0] = 0;
for(int i=0; i<sz; i++){
chmin(dp[i+1], dp[i] + (i ? 1 : 0) + (nums[i] > 0));
if(i < sz-1){
int64_t V = nums[i] * C + nums[i+1];
chmin(dp[i+2], dp[i] + (i ? 2 : 0) + (V+C-2)/(C-1));
}
}
int64_t ans = dp[sz] * B;
cout << ans << endl;
}
return 0;
}