Codeforces Round #249 (Div. 2)——B. Pasha Maximizes
2296 단어 codeforces
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output
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.
Sample test(s)
Input
1990 1
Output
9190
Input
300 0
Output
300
Input
1034 2
Output
3104
Input
9090000078001234 6
Output
9907000008001234
#include<map>
#include<set>
#include<list>
#include<queue>
#include<stack>
#include<vector>
#include<cmath>
#include<cstdio>
#include<cstring>
#include<iostream>
#include<algorithm>
using namespace std;
int cmp(int a, int b)
{
return a > b;
}
int arr[20];
int b[20];
int main()
{
__int64 a;
int k;
while(~scanf("%I64d", &a))
{
scanf("%d", &k);
__int64 ca = a;
int dig = 0;
while(ca)
{
ca /= 10;
dig++;
}
for(int i = dig - 1; i >= 0; i--)
{
arr[i] = a % 10;
b[i] = arr[i];
a /= 10;
}
sort(b, b + dig, cmp);
int s = 0;
while(k > 0)
{
int maxs = -1, pos = 0;
int len = min(s + k, dig - 1);
for(int i = s; i <= len; i++)
{
if(maxs < arr[i])
{
maxs = arr[i];
pos = i;
}
}
for(int i = pos; i > s; i--)
{
arr[i] ^= arr[i - 1];
arr[i - 1] ^= arr[i];
arr[i] ^= arr[i - 1];
}
k -= pos - s;
s++;
}
for(int i = 0; i < dig; i++)
printf("%d", arr[i]);
printf("
");
}
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Codeforces Round #715 Div. 2C The Sports Festival: 구간 DP전형구간 DP의 초전형. 이하, 0-indexed. 입력을 정렬하여 어디서나 시작하고 최적으로 좌우로 계속 유지하면 좋다는 것을 알 수 있습니다. {2000})$의 주문이 된다. 우선, 입력을 소트하여 n개의 요소를 $...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.