Codeforces 770B 思维

传送门:题目

题意:

给一个数n,求 n的,所有数位相加最大的,如果多个数都是可行解,取值最大的作为最优解输出。

题解:

这题我第一开始WA了,看CF代码,发现少枚举了一种情况,最大值无非就是三种情况:

  • 首位不变,后面的都变成9
  • 首位减一,后面的都变成9
  • 首位不变,后面的其中一位是8,其余位都是9

AC代码:

#include <iostream>
#include <cstring>
#include <cstdio>
#include <algorithm>
#include <sstream>
#define debug(x) cout<<#x<<" = "<<x<<endl;
#define INF 0x3f3f3f3f
#define int long long
using namespace std;

int n, first_digit, temp, mmax,kk;
string str;
stringstream ss;
signed main(void) {
    cin >> n;
    ss << n;
    ss >> str;
    first_digit = str[0] - '0';
    mmax = first_digit;
    for (int i = 1; i < (int)str.size(); i++)//第一种情况
        mmax = mmax * 10 + 9;
    if (mmax <= n) {
        cout << mmax;
        return 0;
    }
    int mmax = first_digit - 1;
    for (int i = 1; i < (int)str.size(); i++)//第二种情况
        mmax = mmax * 10 + 9;
    for (int i = 1; i < (int)str.size(); i++)//第三种情况
        str[i] = '9';
    for (int i = 1; i < (int)str.size(); i++) {
        str[i] = '8';
        ss.clear();
        ss << str;
        ss >> temp;
        if (temp <= n)
            mmax = max(temp, mmax);
        str[i] = '9';
    }
    cout << mmax << endl;
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值