A. Chewbaсca and Number1200 / 贪心

Posted 幽殇默

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了A. Chewbaсca and Number1200 / 贪心相关的知识,希望对你有一定的参考价值。


https://codeforces.com/problemset/problem/514/A

#include<bits/stdc++.h> 
using namespace std;
int main(void)

	string s; cin>>s;
	for(int i=0;i<s.size();i++)
	
		int a=s[i]-'0',b=9-a;
		if(min(a,b)==0&&!i) continue;
		s[i]='0'+min(a,b);
	
	cout<<s;
	return 0;

以上是关于A. Chewbaсca and Number1200 / 贪心的主要内容,如果未能解决你的问题,请参考以下文章

CodeForces 518A - Chewbaсca and Number(思路)

Codeforces 1106C Lunar New Year and Number DivisionLunar |数学

Princeton Landmarks in Mathematics and Physics

A. Telephone Number

A. Number Theory Problem

A. The number of positions1000 / 思维