1055.Shortest-Way-to-Form-String

1055. Shortest Way to Form String

题目地址

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.

代码

Approach #1

Time: O(MN) && Space: O(N)

class Solution {
  public int shortestWay(String source, String target) {
        char[] cs = source.toCharArray();
    char[] ts = target.toCharArray();
    boolean[] map = new boolean[26];
    for (int i = 0; i < cs.length; i++) {
      map[cs[i] - 'a'] = true;
    }
    int j = 0;
    int res = 1;
    for (int i = 0; i < ts.length; i++, j++) {
      if (!map[ts[i] - 'a'])        return -1;

      while (j < cs.length && cs[j] != ts[i]) {
        j++;
      }
      if (j == cs.length) {
        j = -1;
        res++;
        i--;
      }
    }

    return res;
  }
}

follow up 1: yes, correct. could u implement it with O 1 space, which mean without set.

public int shortestWay(String source, String target) {
  char[] cs = source.toCharArray();
  char[] ts = target.toCharArray();
  int res = 0;
  for (int i = 0; i < ts.length; ) {
    int oriI = i;
    for (int j = 0; j < cs.length; j++) {
      if (i < ts.length && cs[j] == ts[i]) {
        i++;
      }
    }

    if (i == oriI)        return -1;
    res++;
  }

  return res;
}

;

Last updated