1754. Largest Merge Of Two Strings

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:

  • If word1 is non-empty, append the first character in word1 to merge and delete it from word1.
    • For example, if word1 = "abc" and merge = "dv", then after choosing this operation, word1 = "bc" and merge = "dva".
  • If word2 is non-empty, append the first character in word2 to merge and delete it from word2.
    • For example, if word2 = "abc" and merge = "", then after choosing this operation, word2 = "bc" and merge = "a".

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:
- Take from word1: merge = "c", word1 = "abaa", word2 = "bcaaa"
- Take from word2: merge = "cb", word1 = "abaa", word2 = "caaa"
- Take from word2: merge = "cbc", word1 = "abaa", word2 = "aaa"
- Take from word1: merge = "cbca", word1 = "baa", word2 = "aaa"
- Take from word1: merge = "cbcab", word1 = "aa", word2 = "aaa"
- Append the remaining 5 a's from word1 and word2 at the end of merge.

Example 2:

Input: word1 = "abcabc", word2 = "abdcaba"
Output: "abdcabcabcaba"

 

Constraints:

  • 1 <= word1.length, word2.length <= 3000
  • word1 and word2 consist only of lowercase English letters.

暴力过

class Solution {
    public String largestMerge(String s1, String s2) {
    	String ar = new String("");
    	int l1 = s1.length();
    	int l2 = s2.length();
    	int i = 0;
    	int j = 0;
    	//operate
    	while(true) {
    		if(i==l1&&j!=l2) {        // j has char
        		ar += s2.substring(j);     break;
        	}else if(i!=l1&&j==l2) {  // i
        		ar += s1.substring(i);     break;
        	}else {                   //i j
            	if(s1.charAt(i)>s2.charAt(j)) {
            		ar += s1.charAt(i);   i++;
            	}else if(s1.charAt(i)<s2.charAt(j)){
            		ar += s2.charAt(j);   j++;
            	}else {
            		//helper tell me the direction
            		//true -> i  and false -> j
            		if(helper(s1,s2,i,j)) {
            			ar += s1.charAt(i);   i++;
            		}else {
            			ar += s2.charAt(j);   j++;
            		}
            	}
        	}
    	}
    	return ar;
    }
    public boolean helper(String s1,String s2,int i,int j) {
    	int l1 = s1.length();
    	int l2 = s2.length();
    	while(true) {
    		i++;j++;
        	if(i!=l1&&j!=l2) {    //i j
        		if(s1.charAt(i)>s2.charAt(j)) {
        			return true;
        		}else if(s1.charAt(i)<s2.charAt(j)) {
        			return false;
        		}
        	}else if(i!=l1&&j==l2) {     //i
        		return true;
        	}else {     //j   and  i,j are empty
        		return false;
        	}
    	}	
    }
}

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值