B. Quasi Binary

time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

A number is called quasibinary if its decimal representation contains only digits 0 or 1. For example, numbers 0, 1, 101, 110011 — are quasibinary and numbers 2, 12, 900 are not.

You are given a positive integer n. Represent it as a sum of minimum number of quasibinary numbers.

Input

The first line contains a single integer n (1 ≤ n ≤ 106).

Output

In the first line print a single integer k — the minimum number of numbers in the representation of number n as a sum of quasibinary numbers.

In the second line print k numbers — the elements of the sum. All these numbers should be quasibinary according to the definition above, their sum should equal n. Do not have to print the leading zeroes in the numbers. The order of numbers doesn't matter. If there are multiple possible representations, you are allowed to print any of them.

Sample test(s)
input
9
output
9
1 1 1 1 1 1 1 1 1 
input
32
output
3
10 11 11 


解题说明:此题其实是一道贪心题,给定一个数字,让其仅有0,1组成的K个数构成,保证K最小。考虑到原数字中的每一位肯定都是由1累加上去的(该位为0除外),那么只需要找出数字最大的那一位,K自然就是该值。输出数字时确保为K个数中的对应该位为1,其余选0或1即可。


#include
#include
#include
#include
#include

using namespace std;

int a,b,i,m,t=1,g[10];
int main()
{
	cin>>a;    
	while(a)
	{
		b=a%10;
		for(i=9;i>9-b;i--)
		{
			g[i]+=t;
		}
		if(b>m)
		{
			m=b;
		}
		t*=10;
		a/=10;
	}
	cout<


你可能感兴趣的:(AC路漫漫)