結果
問題 | No.915 Plus Or Multiple Operation |
ユーザー | tanimani364 |
提出日時 | 2019-10-26 19:48:46 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 1,763 bytes |
コンパイル時間 | 864 ms |
コンパイル使用メモリ | 93,336 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-04-24 18:52:25 |
合計ジャッジ時間 | 1,520 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 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 | 1 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
ソースコード
#include<iostream> #include<string> #include<vector> #include<algorithm> #include<map> #include<set> #include<cstdio> #include<cmath> #include<numeric> #include<queue> #include<stack> #include<cstring> #include<limits> #include<functional> #include<unordered_set> #include<iomanip> #include<cassert> #define rep(i,a) for(int i=(int)0;i<(int)a;++i) #define pb push_back #define eb emplace_back using ll=long long; constexpr ll mod = 1e9 + 7; constexpr ll INF = 1LL << 50; template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; } template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; } using namespace std; template< typename T > vector< T > convert_base(T x, T b) { vector< T > ret; T t = 1, k = abs(b); while(x) { ret.emplace_back((x * t) % k); if(ret.back() < 0) ret.back() += k; x -= ret.back() * t; x /= k; t *= b / k; } if(ret.empty()) ret.emplace_back(0); reverse(begin(ret), end(ret)); return ret; } void solve(){ int q; cin>>q; while(q--){ ll a,b,c,ans=0; ll x=0,y=0; cin>>a>>b>>c; if(c==1){ cout<<-1<<"\n"; continue; } vector<ll>v=convert_base(a,c); ll n=v.size(); if(n==1)ans=1; else { x=c*v.front()+v[1]; x=(x+c-2)/(c-1); rep(i,2){ if(v[i])y+=(2-i); } for(int i=2;i<n;++i)if(v[i])ans++; ans+=min(x,y)+(n-2); } cout<<ans*b<<"\n"; } } signed main(){ ios::sync_with_stdio(false); cin.tie(0); cout<<fixed<<setprecision(15); solve(); return 0; }