码迷,mamicode.com
首页 > 编程语言 > 详细

算法初步——贪心B1023.组个最小数

时间:2020-01-08 23:11:03      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:clu   span   png   max   code   mat   pause   图片   mamicode   

技术图片

 

 

#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.组个最小数

标签:clu   span   png   max   code   mat   pause   图片   mamicode   

原文地址:https://www.cnblogs.com/JasonPeng1/p/12168891.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!