题解 | 喝可乐 | 暴力 log 级别复杂度

喝可乐

https://www.nowcoder.com/practice/5f109fbdafdf441bbe809e733685ea5d

#include <bits/stdc++.h>
using namespace std;

void solve() {
    int n, A, B;
    cin >> n >> A >> B;
    int ans = n;
    for(int i = 0; i <=n; i++) {
        int a = i;
        int b = n - a;
        int res = n;
        while(a >= A || b >= B) {
            res += a / A;
            b += a / A;
            a %= A;
            res += b / B;
            a += b / B;
            b %= B;
        }
        ans = max(ans, res);
    }
    cout << ans << "\n";
}

int main() {
    cin.tie(0)->sync_with_stdio(0);
    int T = 1;
    cin >> T;
    while (T--) solve();
}
// 64 位输出请用 printf("%lld")

全部评论

相关推荐

03-27 01:58
已编辑
西北工业大学 Java
在平静中度过当下:如果这个bg也简历挂的话可能他们现在不缺人了吧,我也是这两天投的,阿里和快手投的岗都是简历秒挂
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务