B. Quasi Binary1400 / 贪心

Posted 幽殇默

tags:

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


https://codeforces.com/contest/538/problem/B
数字中的最大数字就是其长度,对于每一位数字都尽可能地均分。

#include<bits/stdc++.h>
using namespace std;
int main(void)
{
	string s; cin>>s;
	int m=s.size();
	int n=0;
	for(int i=0;i<s.size();i++) n=max(n,s[i]-'0');
	string ans[n];
	for(int i=0;i<n;i++) 
		for(int j=0;j<m;j++) ans[i]+="0";
	for(int i=0;i<s.size();i++)
		for(int j=0;j<s[i]-'0';j++) ans[j][i]='1';
	cout<<n<<endl;
	for(int i=0;i<n;i++) 
	{
		while(ans[i][0]=='0')  ans[i]=ans[i].substr(1);//去除前导零 
		cout<<ans[i]<<" ";
	}
	return 0;
}

以上是关于B. Quasi Binary1400 / 贪心的主要内容,如果未能解决你的问题,请参考以下文章

B. Amr and Pins1400 / 贪心

[CF538B] Quasi Binary

B. Books1400 / 二分答案

B. Two Buttons1400 / 简单的bfs

B. Swaps1400 / 双指针 思维

B. Phoenix and Beauty1400 / 构造 构造循环结