C. Given Length and Sum of Digits...1400 / 贪心

Posted 幽殇默

tags:

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


https://codeforces.com/problemset/problem/489/C
就是贪心,小的是开头1从后往前尽量多点9
大的是开头尽量多的9.注意边界,很恶心。

#include<bits/stdc++.h>
using namespace std;
int m,n;
int main(void)
{
    cin>>m>>n;
    if(n==0&&m==1) 
    {
    	cout<<"0 0";
    	return 0;
    }
	if( n==0&&m>1 || m*9 < n)
	{
		puts("-1 -1");
		return 0;
	}
	vector<int>A(m,0),B(m,0);
	A[0]=1;
	while(A[0]+9*(m-1)<n) A[0]++;
	int temp=n-A[0];
	for(int i=m-1;i>=1;i--)
	{
		if(temp>=9) A[i]=9,temp-=9;
		else A[i]=temp,temp=0;
	}
	for(int i=0;i<m;i++) cout<<A[i];
	cout<<" ";
	temp=n;
	for(int i=0;i<m;i++) 
	{
		if(temp>=9) B[i]=9,temp-=9;
		else B[i]=temp,temp=0;
	}
	for(int i=0;i<m;i++) cout<<B[i];
	return 0;
}

以上是关于C. Given Length and Sum of Digits...1400 / 贪心的主要内容,如果未能解决你的问题,请参考以下文章

C. Given Length and Sum of Digits...1400 / 贪心

Codeforces Round #277.5 (Div. 2)C. Given Length and Sum of Digits...(贪心)

2021-8-28 Given Length and Sum of Digits

CF 489 C Given Length and Sum of Digits... 贪心

CodeForces 489C Given Length and Sum of Digits...

CF489C Given Length and Sum of Digits