(514A)codeforce

本文探讨了Chewbacca如何通过数字逆运算将初始整数转换为最小可能的正整数,同时遵循特定规则避免以零开头。通过实例分析和代码实现,深入解析了这一有趣数学问题的解决策略。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

A. Chewbaсca and Number
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

Luke Skywalker gave Chewbacca an integer number x. Chewbacca isn't good at numbers but he loves inverting digits in them. Inverting digit t means replacing it with digit 9 - t.

Help Chewbacca to transform the initial number x to the minimum possible positive number by inverting some (possibly, zero) digits. The decimal representation of the final number shouldn't start with a zero.

Input

The first line contains a single integer x (1 ≤ x ≤ 1018) — the number that Luke Skywalker gave to Chewbacca.

Output

Print the minimum possible positive number that Chewbacca can obtain after inverting some digits. The number shouldn't contain leading zeroes.

Sample test(s)
input
27
output
22
input
4545
output
4444

最近不知道怎么了,也是醉了,BCBC坑,CFCF坑。。在家脑袋就不灵光。。
. The decimal representation of the final number shouldn't start with a zero.
这句话····我一直卡在这里,题意要求不能以0为开始,所以我们特判第一位,如果是9就不变,否则如果大于5就用,9减去。
剩下的如果大于5就用9减去就可以了。
#include<iostream>
#include<cstdio>
#include<string.h>
#include<string>
#include<stack>
#include<set>
#include<algorithm>
#include<cmath>
#include<vector>
#include<map>


#define ll __int64
#define lll unsigned long long
#define MAX 1000009
#define eps 1e-8

using namespace std;

int main()
{
    string a,b;
    while(cin>>a)
    {
        if(a[0]!='9'&&a[0]>='5')
        {
            a[0] = (9 - (a[0] - '0')) + '0';
        }
        cout<<a[0];
        for(ll i = 1; i<a.size(); i++)
        {
            if(a[i]>='5')
            {
                a[i] = (9 - (a[i] - '0')) + '0';
            }
            cout<<a[i];
        }
        cout<<endl;
    }
    return 0;
}


### Codeforces 测试数据生成方法 Codeforces 是一个流行的在线编程竞赛平台,支持多种方式来生成或提供测试数据。以下是关于如何在 Codeforces 平台上生成或提供测试数据的相关说明: #### 使用 `codeforces-parser` 自动生成测试数据 可以通过第三方工具如 `codeforces-parser` 来解析 Codeforces 的样例测试数据并自动生成测试文件。此工具可以从比赛页面提取样例输入和输出,并将其转换为可运行的测试用例[^1]。 安装和使用该工具的方法如下: ```bash pip install git+https://gitcode.com/gh_mirrors/co/codeforces-parser.git ``` 执行命令后,可以根据指定的比赛 ID 和题目编号下载对应的样例测试数据。例如: ```bash cfp --contest-id 1728 --problem A ``` 这会生成与问题 A 对应的输入和输出文件,便于本地调试和验证程序逻辑。 #### 手动创建自定义测试数据 如果需要更灵活的方式,则可以选择手动编写测试数据。通常情况下,可以按照以下结构准备输入文件: - **输入格式**: 遵循题目描述中的输入规范。 - **输出格式**: 根据预期的结果设计相应的输出内容。 假设有一道题目的输入形式如下所示: ```plaintext t (number of test cases) n_1 a_{1,1} ... a_{1,n_1} ... n_t a_{t,1} ... a_{t,n_t} ``` 那么可以构建类似的测试案例集用于验证算法实现是否正确。比如对于引用[3]提到的情况,即判断若干位数字组成的序列前缀匹配 π 值的问题,我们可以构造一些简单的例子作为起点[^3]: ```plaintext Input: 3 314 2718 1618 Output: 3 0 0 ``` 这里分别对应三个不同的测试情况——第一个完全吻合圆周率开头部分;第二个代表 e 数字串并不满足条件;最后一个接近黄金比例但也不符合条件。 #### 数据项的概念应用到测试数据的设计上 当考虑具体某个字段或者参数设置时,应当注意每一个单独的数据项都可能影响最终结果判定标准。正如引用[2]所指出那样,这些最小单位携带特定意义并且相互组合形成完整的记录条目[^2]。因此,在实际操作过程中要特别留意各组成部分之间的关系及其边界状况处理。 ```python def check_pi_prefix(s): pi_str = "3141592653589793238462643383279" max_match_length = min(len(pi_str), len(s)) for i in range(max_match_length + 1): if s[:i] != pi_str[:i]: return i - 1 return max_match_length # Example usage with custom inputs defined above. test_cases = ["314", "2718", "1618"] results = [check_pi_prefix(case) for case in test_cases] for result in results: print(result) ``` 上述 Python 函数实现了比较任意字符串同π数值前缀一致性的功能演示版本。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值