F - Pasha Maximizes

2024-02-07 01:58
文章标签 pasha maximizes

本文主要是介绍F - Pasha Maximizes,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

如有错误,欢迎大神指出!!!

题目:

Pasha has a positive integer a without leading zeroes. Today he decided that the number is too small and he should make it larger. Unfortunately, the only operation Pasha can do is to swap two adjacent decimal digits of the integer.

Help Pasha count the maximum number he can get if he has the time to make at most k swaps.

Input

The single line contains two integers a and k (1 ≤ a ≤ 1018; 0 ≤ k ≤ 100).

Output

Print the maximum number that Pasha can get if he makes at most k swaps.

Example
Input
1990 1
Output
9190
Input
300 0
Output
300
Input
1034 2
Output
3104
Input
9090000078001234 6
Output
9907000008001234

题意:最多交换K次,交换只能两两相邻之间交换,获得最大的数。

解题思路:由于数据不大,直接进行暴力搜索。输入是用字符串输入。


ac code:

#include <iostream>
#include <cstdio>
#include <cstring>
#include <string>
#include <cstdlib>
#include <cmath>
#include <vector>
#include <list>
#include <deque>
#include <queue>
#include <iterator>
#include <stack>
#include <map>
#include <set>
#include <algorithm>
#include <cctype>
#define si1(a) scanf("%d",&a)
#define si2(a,b) scanf("%d%d",&a,&b)
#define sd1(a) scanf("%lf",&a)
#define sd2(a,b) scanf("%lf%lf",&a,&b)
#define ss1(s)  scanf("%s",s)
#define pi1(a)    printf("%d\n",a)
#define pi2(a,b)  printf("%d %d\n",a,b)
#define mset(a,b)   memset(a,b,sizeof(a))
#define forb(i,a,b)   for(int i=a;i<b;i++)
#define ford(i,a,b)   for(int i=a;i<=b;i++)
#define LL long long
#define eps 1e-8
#define INF 0x3f3f3f3f
#define mod 1000000007
#define lson l , m , rt << 1
#define rson m + 1 , r , rt << 1 | 1
using namespace std;
char ss[1006];int main()
{int n;scanf("%s",ss);int k;si1(k);for(int i=0;i<strlen(ss);i++){if(ss[i]!='9'){char c=ss[i];int num=0;for(int j=1;j<=k;j++){if(ss[j+i]>c){c=ss[i+j];//搜索在这个字符之后更大的字符。num=j;//记录位置if(c=='9')break;}}k=k-num;//维护交换次数for(int j=num;j>=1;j--)//交换后的字符串{char a;a=ss[i+j];ss[i+j]=ss[i+j-1];ss[i+j-1]=a;}//printf("%s\n",ss);}if(k<=0)break;//交换次数使用完}printf("%s\n",ss);return 0;
}


这篇关于F - Pasha Maximizes的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/686207

相关文章

Maximum likelihood function maximizes what thing?

最大似然函数(Maximum Likelihood Function)最大化的是数据在给定参数下出现的概率。具体来说,它最大化的是似然函数(Likelihood Function),即给定参数 ( \theta ) 下观测数据的概率。在统计学中,似然函数 ( L(\theta) ) 通常定义为所有独立观测数据点概率的乘积,对于参数 ( \theta ) 的函数。 对于一组独立同分布的观测数据

Coder-Strike 2014 - Finals (Div. 2) A. Pasha and Hamsters

超简单的贪心题,就不用多说了吧... 先处理好第一个人的,在处理第二个人的,如果二者喜欢同一个苹果,给第一个人 代码如下: #include <map>#include <cmath>#include <vector>#include <string>#include <cstdio>#include <cstring>#include <cstdlib>#include