carloscn / structstudy

Leetcode daily trainning by using C/C++/RUST programming.
4 stars 1 forks source link

leetcode2566: Maximum Difference by Remapping a Digit #420

Open carloscn opened 1 year ago

carloscn commented 1 year ago

Description

You are given an integer num. You know that Danny Mittal will sneakily remap one of the 10 possible digits (0 to 9) to another digit.

Return the difference between the maximum and minimum values Danny can make by remapping exactly one digit in num.

Notes:

When Danny remaps a digit d1 to another digit d2, Danny replaces all occurrences of d1 in num with d2. Danny can remap a digit to itself, in which case num does not change. Danny can remap different digits for obtaining minimum and maximum values respectively. The resulting number after remapping can contain leading zeroes. We mentioned "Danny Mittal" to congratulate him on being in the top 10 in Weekly Contest 326.

Example 1:

Input: num = 11891 Output: 99009 Explanation: To achieve the maximum value, Danny can remap the digit 1 to the digit 9 to yield 99899. To achieve the minimum value, Danny can remap the digit 1 to the digit 0, yielding 890. The difference between these two numbers is 99009.

Example 2:

Input: num = 90 Output: 99 Explanation: The maximum value that can be returned by the function is 99 (if 0 is replaced by 9) and the minimum value that can be returned by the function is 0 (if 9 is replaced by 0). Thus, we return 99.

Constraints:

1 <= num <= 108

carloscn commented 1 year ago

Analysis

static int32_t min_max_difference(int32_t num)
{
    int32_t ret = 0;

    if (num < 0) {
        goto finish;
    }

    char buffer[16];
    char cap = '\0';
    sprintf(buffer, "%d", num);
    for (size_t i = 0; i < strlen(buffer); i ++) {
        if ((buffer[i] != '9') && (cap == '\0')) {
            cap = buffer[i];
            buffer[i] = '9';
            continue;
        }
        if (cap == buffer[i]) {
            buffer[i] = '9';
        }
    }
    ret = atoi(buffer);

    sprintf(buffer, "%d", num);
    cap = buffer[0], buffer[0] = '0';
    for (size_t i = 1; i < strlen(buffer); i ++) {
        if (cap == buffer[i]) {
            buffer[i] = '0';
        }
    }
    ret -= atoi(buffer);

finish:
    return ret;
}
carloscn commented 1 year ago

Code

https://review.gerrithub.io/c/carloscn/structstudy/+/1172077 https://github.com/carloscn/structstudy/commit/89ebaea531e8e42d83ad6ebbbb7c5db800911ad1