PAT乙級1023組個最小數
阿新 • • 發佈:2018-11-11
題目描述:
給定數字 0-9 各若干個。你可以以任意順序排列這些數字,但必須全部使用。目標是使得最後得到的數儘可能小(注意 0 不能做首位)。例如:給定兩個 0,兩個 1,三個 5,一個 8,我們得到的最小的數就是 10015558。
現給定數字,請編寫程式輸出能夠組成的最小的數。
輸入格式:
輸入在一行中給出 10 個非負整數,順序表示我們擁有數字 0、數字 1、……數字 9 的個數。整數間用一個空格分隔。10 個數字的總個數不超過 50,且至少擁有 1 個非 0 的數字。
輸出格式:
在一行中輸出能夠組成的最小的數。
輸入樣例:
2 2 0 0 0 3 0 0 1 0
輸出樣例:
10015558
程式碼如下:
#include <iostream>
#include <vector>
#include<algorithm>
using namespace std;
int main()
{
string s={"0123456789"};
int a,j=0;
vector<int>v;
for(int i=0;i<10;i++){
cin>>a;
while(a--){
v.push_back(i);
}
}
sort(v.begin(),v.end());
for(auto it=v.begin();it!=v.end();it++){
if(*it!=0){
cout<<*it;
*it=-1;
break;
}
}
for(auto it=v.begin();it!=v.end();it++){
if(*it>=0)cout<<*it;
}
return 0;
}
總結:
1)當vector < int >v;定義時,要用v.push_back()來輸入,不能下標直接賦值。
2)當vector < int >v(10);這樣可以直接用下標賦值。