結果
問題 | No.915 Plus Or Multiple Operation |
ユーザー | square1001 |
提出日時 | 2020-09-03 16:31:52 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 580 bytes |
コンパイル時間 | 683 ms |
コンパイル使用メモリ | 73,792 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-07 03:50:16 |
合計ジャッジ時間 | 1,251 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 2 ms
6,820 KB |
testcase_04 | AC | 2 ms
6,820 KB |
testcase_05 | AC | 2 ms
6,820 KB |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | AC | 2 ms
6,816 KB |
testcase_08 | AC | 2 ms
6,816 KB |
testcase_09 | AC | 2 ms
6,816 KB |
testcase_10 | AC | 2 ms
6,820 KB |
testcase_11 | AC | 2 ms
6,820 KB |
testcase_12 | AC | 2 ms
6,816 KB |
ソースコード
#include <vector> #include <iostream> #include <algorithm> using namespace std; int main() { int Q; cin >> Q; while (Q--) { int A, B, C; cin >> A >> B >> C; if (C == 1) { cout << -1 << endl; } else { int ops = (A + C - 2) / (C - 1); vector<int> seq = { A }; do { int x = seq.back(); seq.back() %= C; seq.push_back(x / C); int cost = int(seq.size()) - 1; for (int i : seq) { cost += (i + C - 2) / (C - 1); } ops = min(ops, cost); } while (C != 1 && seq.back() >= C); cout << 1LL * ops * B << endl; } } return 0; }