結果
問題 | No.915 Plus Or Multiple Operation |
ユーザー | mamekin |
提出日時 | 2019-10-25 22:01:52 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 5 ms / 2,000 ms |
コード長 | 1,439 bytes |
コンパイル時間 | 1,175 ms |
コンパイル使用メモリ | 124,960 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-04-24 18:40:29 |
合計ジャッジ時間 | 1,699 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 5 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
ソースコード
#define _USE_MATH_DEFINES #include <cstdio> #include <iostream> #include <sstream> #include <fstream> #include <iomanip> #include <algorithm> #include <cmath> #include <complex> #include <string> #include <vector> #include <array> #include <list> #include <queue> #include <stack> #include <set> #include <map> #include <bitset> #include <numeric> #include <limits> #include <climits> #include <cfloat> #include <functional> #include <iterator> #include <memory> #include <regex> using namespace std; int main() { int q; cin >> q; while(--q >= 0){ int a, b, c; cin >> a >> b >> c; if(c == 1){ cout << -1 << endl; continue; } set<int> s; queue<int> q; s.insert(a); q.push(a); long long ans = 0; while(*s.begin() != 0){ ans += b; int n = q.size(); while(--n >= 0){ int x = q.front(); q.pop(); vector<int> v = {x / c * c}; if(x % c == 0) v.push_back(x / c); if(c - 1 <= x) v.push_back(x - (c - 1)); for(int y : v){ if(s.find(y) == s.end()){ s.insert(y); q.push(y); } } } } cout << ans << endl; } return 0; }