LeetCode-in-Java

1754. Largest Merge Of Two Strings

Medium

You are given two strings word1 and word2. You want to construct a string merge in the following way: while either word1 or word2 are non-empty, choose one of the following options:

Return the lexicographically largest merge you can construct.

A string a is lexicographically larger than a string b (of the same length) if in the first position where a and b differ, a has a character strictly larger than the corresponding character in b. For example, "abcd" is lexicographically larger than "abcc" because the first position they differ is at the fourth character, and d is greater than c.

Example 1:

Input: word1 = “cabaa”, word2 = “bcaaa”

Output: “cbcabaaaaa”

Explanation: One way to get the lexicographically largest merge is:

Example 2:

Input: word1 = “abcabc”, word2 = “abdcaba”

Output: “abdcabcabcaba”

Constraints:

Solution

public class Solution {
    public String largestMerge(String word1, String word2) {
        char[] a = word1.toCharArray();
        char[] b = word2.toCharArray();
        StringBuilder sb = new StringBuilder();
        int i = 0;
        int j = 0;
        while (i < a.length && j < b.length) {
            if (a[i] == b[j]) {
                boolean first = go(a, i, b, j);
                if (first) {
                    sb.append(a[i]);
                    i++;
                } else {
                    sb.append(b[j]);
                    j++;
                }
            } else {
                if (a[i] > b[j]) {
                    sb.append(a[i]);
                    i++;
                } else {
                    sb.append(b[j]);
                    j++;
                }
            }
        }

        while (i < a.length) {
            sb.append(a[i++]);
        }
        while (j < b.length) {
            sb.append(b[j++]);
        }

        return sb.toString();
    }

    private boolean go(char[] a, int i, char[] b, int j) {
        while (i < a.length && j < b.length && a[i] == b[j]) {
            i++;
            j++;
        }
        if (i == a.length) {
            return false;
        }
        if (j == b.length) {
            return true;
        }
        return a[i] > b[j];
    }
}