zoukankan      html  css  js  c++  java
  • LeetCode 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.

    题解:

    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.

  • 相关阅读:
    mysql查询数据返回touple改为字典的方法
    win32api 获取文件版本信息
    LINK : fatal error LNK1104: 无法打开文件“gtestd.lib”
    gtest vs2015配置
    Akka Quickstart with Java-笔记
    Linux下tar压缩解压缩命令详解
    Hadoop Streaming开发要点
    Hadoop Steaming开发之WordCount
    hadoop常见问题
    Java中通过脚本引擎调用js函数
  • 原文地址:https://www.cnblogs.com/Dylan-Java-NYC/p/12204123.html
Copyright © 2011-2022 走看看