算法初步——贪心B1023.组个最小数
Posted JasonPeng1
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了算法初步——贪心B1023.组个最小数相关的知识,希望对你有一定的参考价值。
#include <bits/stdc++.h> #include<math.h> #include <string> using namespace std; const int MAX_LEN = 100005; int main(){ int temp[10]; for(int i =0;i<10;++i){ temp[i] = 0; } int count = 0; for(int i =0;i<10;++i){ cin>>temp[i]; count += temp[i]; } for(int i=0;i<count;++i){ for(int j=0;j<11;++j){ if(i == 0){ if(temp[j+1] != 0){ cout<<j+1; temp[j+1]--; break; } }else{ if(temp[j] != 0){ cout<<j; temp[j]--; break; } } } } system("pause"); return 0; }
以上是关于算法初步——贪心B1023.组个最小数的主要内容,如果未能解决你的问题,请参考以下文章