結果
問題 | No.915 Plus Or Multiple Operation |
ユーザー | chocorusk |
提出日時 | 2019-10-25 23:20:42 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,399 bytes |
コンパイル時間 | 955 ms |
コンパイル使用メモリ | 109,420 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-07 03:38:49 |
合計ジャッジ時間 | 1,516 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | AC | 2 ms
5,248 KB |
ソースコード
#include <cstdio> #include <cstring> #include <iostream> #include <string> #include <cmath> #include <bitset> #include <vector> #include <map> #include <set> #include <queue> #include <deque> #include <algorithm> #include <complex> #include <unordered_map> #include <unordered_set> #include <random> #include <cassert> #include <fstream> #include <utility> #include <functional> #include <time.h> #include <stack> #define popcount __builtin_popcount using namespace std; typedef long long int ll; typedef pair<int, int> P; int main() { int q; cin>>q; for(int i=0; i<q; i++){ ll a, b, c; cin>>a>>b>>c; if(c==1){ cout<<-1<<endl; continue; } ll x[50]; int id=0; while(a){ x[id]=a%c; a/=c; id++; } ll dp[50]; dp[0]=0; for(int i=1; i<=id; i++){ ll y=0; dp[i]=1e18; for(int j=1; j<=id; j++){ y+=x[i-j]; dp[i]=min(dp[i-j]+(y+c-2)/(c-1), dp[i]); y*=c; } } for(int i=id-1; i>=0; i--) dp[i]=min(dp[i], dp[i+1]); ll ans=1e18; ll y=0; for(int i=id-1; i>=0; i--){ y+=x[i]; ans=min(ans, dp[i]+(y+c-2)/(c-1)+i); y*=c; } ans*=b; cout<<ans<<endl; } return 0; }