码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode 1055. Shortest Way to Form String

时间:2020-01-17 10:01:32      阅读:91      评论:0      收藏:0      [点我收藏+]

标签:example   oss   end   xpl   orm   follow   min   nbsp   return   

原题链接在这里:https://leetcode.com/problems/shortest-way-to-form-string/

题目:

From any string, we can form a subsequence of that string by deleting some number of characters (possibly no deletions).

Given two strings source and target, return the minimum number of subsequences of source such that their concatenation equals target. If the task is impossible, return -1.

Example 1:

Input: source = "abc", target = "abcbc"
Output: 2
Explanation: The target "abcbc" can be formed by "abc" and "bc", which are subsequences of source "abc".

Example 2:

Input: source = "abc", target = "acdbc"
Output: -1
Explanation: The target string cannot be constructed from the subsequences of source string due to the character "d" in target string.

Example 3:

Input: source = "xyz", target = "xzyxz"
Output: 3
Explanation: The target string can be constructed as follows "xz" + "y" + "xz".

Constraints:

  • Both the source and target strings consist of only lowercase English letters from "a"-"z".
  • The lengths of source and target string are between 1 and 1000.

题解:

Iterate through the source to move pointer in target as much as possible.

After one iteration, res++.

If we could come to the end of target, return res.

If go through one iteration, the pointer in target is not changed, then return -1.

Time Compleixty: O(n + res * m). n = target.length(). m = source.length().

Space: O(1).

AC Java:

 1 class Solution {
 2     public int shortestWay(String source, String target) {
 3         if(source == null || target == null){
 4             return -1;
 5         }
 6         
 7         if(target.length() == 0){
 8             return 0;
 9         }
10         
11         int res = 0;
12         int m = source.length();
13         int n = target.length();
14         int cur = 0;
15         while(cur < n){
16             int temp = cur;
17             for(int i = 0; i < m && cur < n; i++){
18                 if(source.charAt(i) == target.charAt(cur)){
19                     cur++;
20                 }
21             }
22             
23             if(temp == cur){
24                 return -1;
25             }
26             
27             res++;
28         }
29         
30         return res;
31     }
32 }

类似Is Subsequence.

LeetCode 1055. Shortest Way to Form String

标签:example   oss   end   xpl   orm   follow   min   nbsp   return   

原文地址:https://www.cnblogs.com/Dylan-Java-NYC/p/12204123.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!