This time your task is simple.
Given two integers X and K , find the largest number that can be formed by changing digits at atmost K places in the number x.
Input:
First line of the input contains two integers X and K K separated by a single space.
Output:
Print the largest number formed in a single line.
Constraints:
1 < X < 10^18
0 < K < 9
code -
int main()
{
long long x ;
scanf("%llu" , &x);
int k ;
scanf("%d" , &k);
long long max = (int)log10(x) + 1 ;
int arr[max] ;
long long temp = x ;
long long i ;
for(i = max -1 ; i >= 0 ; i-- )
{
arr[i] = temp % 10 ;
temp = temp / 10 ;
}
i = 0 ;
int cnt = k ;
while(cnt != 0)
{
if(arr[i] != 9)
{
arr[i] = 9 ;
cnt = cnt - 1 ;
}
i = i + 1 ;
}
int power = max -1 ;
long long answer = 0 ;
for(i = 0 ; i < max ; i++)
{
answer = answer + arr[i] * pow(10,power) ;
power = power -1 ;
}
printf("%llu" , answer );
return 0;
}
Getting partially correct ouput
wrong outputs for given input -
242358001399388784 9
169232736841900368 4
correct output for -
14500679550767648 1
8330936799410214 9
There's no need to compute
answer
. You can simply bypass it by printing the array.