📜  最多更改K位数字以使数字最小化

📅  最后修改于: 2021-04-22 09:24:09             🧑  作者: Mango

给定数字N ,任务是通过最多更改K个数字来最小化该数字。请注意,该数字不应包含任何前导零。

例子:

方法:

  • 1如果尚未1和更新ķ相应的更换的第一位。
  • 现在,对于其余数字,将下一个K – 1个非零数字替换为0

下面是上述方法的实现:

C++
// C++ implementation of the approach
#include 
using namespace std;
  
// Function to return the minimized number
string minNum(string num, int k)
{
  
    // Total digits in the number
    int len = num.length();
  
    // If the string is empty or there
    // are no operations to perform
    if (len == 0 || k == 0)
        return num;
  
    // "0" is a valid number
    if (len == 1)
        return "0";
  
    // If the first digit is not already 1 then
    // update it to 1 and decrement k
    if (num[0] != '1') {
        num[0] = '1';
        k--;
    }
  
    int i = 1;
    // While there are operations left
    // and the number can still be updated
    while (k > 0 && i < len) {
  
        // If the current digit is not already 0
        // then update it to 0 and decrement k
        if (num[i] != '0') {
            num[i] = '0';
            k--;
        }
  
        i++;
    }
  
    // Return the minimised number
    return num;
}
  
// Driver code
int main()
{
    string num = "91945";
    int k = 3;
  
    cout << minNum(num, k);
  
    return 0;
}


Java
// Java implementation of the approach 
class GFG
{
      
    // Function to return the minimized number 
    static String minNum(char num[], int k) 
    { 
      
        // Total digits in the number 
        int len = num.length; 
      
        // If the string is empty or there 
        // are no operations to perform 
        if (len == 0 || k == 0) 
        {
            String num_str = new String(num);
            return num_str; 
        }
      
        // "0" is a valid number 
        if (len == 1) 
            return "0"; 
      
        // If the first digit is not already 1 then 
        // update it to 1 and decrement k 
        if (num[0] != '1') 
        { 
            num[0] = '1'; 
            k--; 
        } 
      
        int i = 1; 
          
        // While there are operations left 
        // and the number can still be updated 
        while (k > 0 && i < len) 
        { 
      
            // If the current digit is not already 0 
            // then update it to 0 and decrement k 
            if (num[i] != '0')
            { 
                num[i] = '0'; 
                k--; 
            } 
            i++; 
        } 
          
        String num_str = new String(num);
          
        // Return the minimised number 
        return num_str; 
    } 
      
    // Driver code 
    public static void main(String args[]) 
    { 
        String num = "91945"; 
        int k = 3; 
      
        System.out.println(minNum(num.toCharArray(), k)); 
    } 
}
  
// This code is contributed by AnkitRai01


Python3
# Python 3 implementation of the approach 
  
# Function to return the minimized number 
def minNum(num, k) : 
  
    # Total digits in the number 
    len_ = len(num) 
  
    # If the string is empty or there 
    # are no operations to perform 
    if len_ == 0 or k == 0 : 
        return num 
  
    # "0" is a valid number 
    if len_ == 1: 
        return "0"
  
    # If the first digit is not already 1 then 
    # update it to 1 and decrement k 
    if num[0] != '1' : 
        num = '1' + num[1:] 
        k -= 1
  
    i = 1
      
    # While there are operations left 
    # and the number can still be updated 
    while k > 0 and i < len_ : 
  
        # If the current digit is not already 0 
        # then update it to 0 and decrement k 
        if num[i] != '0' : 
            num = num[:i] + '0' + num[i + 1:]
            k -= 1
  
        i += 1
   
    # Return the minimised number 
    return num 
  
# Driver code 
num = "91945"
k = 3
  
print(minNum(num, k)) 
  
# This code is contributed by divyamohan123


C#
// C# implementation of the approach
using System;
      
class GFG
{
      
    // Function to return the minimized number 
    static String minNum(char []num, int k) 
    { 
      
        // Total digits in the number 
        int len = num.Length; 
      
        // If the string is empty or there 
        // are no operations to perform 
        if (len == 0 || k == 0) 
        {
            return String.Join("", num); 
        }
      
        // "0" is a valid number 
        if (len == 1) 
            return "0"; 
      
        // If the first digit is not already 1 then 
        // update it to 1 and decrement k 
        if (num[0] != '1') 
        { 
            num[0] = '1'; 
            k--; 
        } 
      
        int i = 1; 
          
        // While there are operations left 
        // and the number can still be updated 
        while (k > 0 && i < len) 
        { 
      
            // If the current digit is not already 0 
            // then update it to 0 and decrement k 
            if (num[i] != '0')
            { 
                num[i] = '0'; 
                k--; 
            } 
            i++; 
        } 
          
        // Return the minimised number 
        return String.Join("", num); 
    } 
      
    // Driver code 
    public static void Main(String []args) 
    { 
        String num = "91945"; 
        int k = 3; 
      
        Console.WriteLine(minNum(num.ToCharArray(), k)); 
    } 
}
  
// This code is contributed by 29AjayKumar


输出:
10045