結果
| 問題 |
No.915 Plus Or Multiple Operation
|
| コンテスト | |
| ユーザー |
ngtkana
|
| 提出日時 | 2019-10-25 22:10:34 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 2,292 bytes |
| コンパイル時間 | 2,287 ms |
| コンパイル使用メモリ | 198,584 KB |
| 最終ジャッジ日時 | 2025-01-08 01:19:46 |
|
ジャッジサーバーID (参考情報) |
judge3 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 WA * 1 |
| other | AC * 1 WA * 9 |
ソースコード
#include <bits/stdc++.h>
#define loop(n) for (int ngtkana_is_genius = 0; ngtkana_is_genius < int(n); ngtkana_is_genius++)
#define rep(i, begin, end) for(int i = int(begin); i < int(end); i++)
#define all(v) v.begin(), v.end()
#define rand(l, r) std::uniform_int_distribution<>(l, r)(mt)
using lint = long long;
auto mt = std::mt19937_64(std::random_device{}());
auto cmn = [](auto& a, auto b){if (a > b) {a = b; return true;} return false;};
auto cmx = [](auto& a, auto b){if (a < b) {a = b; return true;} return false;};
void debug_impl() { std::cerr << std::endl; }
template <typename Head, typename... Tail>
void debug_impl(Head head, Tail... tail){
std::cerr << " " << head;
debug_impl(tail...);
}
#ifndef STOPIT
#define debug(...)\
std::cerr << std::boolalpha << "[" << #__VA_ARGS__ << "]:";\
debug_impl(__VA_ARGS__);\
std::cerr << std::noboolalpha;
#else
#define debug 0;
#endif
template < typename Container, typename Value = typename Container::value_type, std::enable_if_t<!std::is_same< Container, std::string >::value, std::nullptr_t> = nullptr>
std::istream& operator>> (std::istream& is, Container& v)
{ for (auto & x : v) { is >> x; } return is; }
template < typename Container, typename Value = typename Container::value_type, std::enable_if_t<!std::is_same< Container, std::string >::value, std::nullptr_t> = nullptr >
std::ostream& operator<< (std::ostream& os, Container const& v) {
os << "{";
for (auto it = v.begin(); it != v.end(); it++)
{os << (it != v.begin() ? "," : "") << *it;}
return os << "}";
}
int main() {
std::cin.tie(0); std::cin.sync_with_stdio(false);
int q; std::cin >> q;
loop(q) {
int a, b, c;
std::cin >> a >> b >> c;
if (c == 1) {
std::cout << a * b << std::endl;
continue;
}
std::vector< int > v;
while (a) {
v.emplace_back(a % c);
a /= c;
}
// debug(v);
lint ret = std::count_if(all(v), [](auto x){ return x; })
+ v.size() - 1;
if (2u <= v.size() && v.back() == 1 && *(v.end() - 2) != c - 1) {
v.pop_back();
v.back()++;
auto ret2 = 1;
ret2 += std::count_if(all(v), [](auto x){ return x; })
+ v.size() - 1;
cmx(ret, ret2);
}
// debug(ret);
ret *= b;
std::cout << ret << std::endl;
}
return 0;
}
ngtkana