1. 程式人生 > >最小新整數

最小新整數

cstring == 時間限制 個數字 cnblogs sin while center style

最小新整數

鏈接:http://ybt.ssoier.cn:8088/problem_show.php?pid=1231


時間限制: 1000 ms 內存限制: 65536 KB

【題目描述】

給定一個十進制正整數n(0<n<1000000000),每個數位上數字均不為0。n的位數為m。

現在從m位中刪除k位(0<k<m),求生成的新整數最小為多少?

例如: n=9128456,k=2,則生成的新整數最小為12456。

【輸入】

第一行t, 表示有t組數據;

接下來t行,每一行表示一組測試數據,每組測試數據包含兩個數字n,k。

【輸出】

t行,每行一個數字,表示從n中刪除k位後得到的最小整數。

【輸入樣例】

2
9128456 2
1444 3

【輸出樣例】

12456
1
#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<cmath>
using namespace std;

int main()
{
    int t;
    cin>>t;
    while(t--)
    {
        string s;
        int n;
        cin>>s>>n;
        
int l=s.length(); n=l-n; int i=0; while(l>n) { while(s[i]<=s[i+1])i++; if(s[i]>s[i+1]) { l--;for(int j=i;j<l;j++)s[j]=s[j+1]; } i--;
if(i==l)break; } i=0; while(s[i]==0)i++; for(;i<n;i++)printf("%c",s[i]); cout<<endl; } }

最小新整數