• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
neverlandly
博客园    首页    新随笔    联系   管理    订阅  订阅

Leetcode: Count The Repetitions

Define S = [s,n] as the string S which consists of n connected strings s. For example, ["abc", 3] ="abcabcabc".

On the other hand, we define that string s1 can be obtained from string s2 if we can remove some characters from s2 such that it becomes s1. For example, “abc” can be obtained from “abdbec” based on our definition, but it can not be obtained from “acbbe”.

You are given two non-empty strings s1 and s2 (each at most 100 characters long) and two integers 0 ≤ n1 ≤ 106 and 1 ≤ n2 ≤ 106. Now consider the strings S1 and S2, where S1=[s1,n1] and S2=[s2,n2]. Find the maximum integer M such that [S2,M] can be obtained from S1.

Example:

Input:
s1="acb", n1=4
s2="ab", n2=2

Return:
2

目前只想出了Brute Force做法(1165ms), 看到有<20ms的做法,未深究:

 1 public class Solution {
 2     public int getMaxRepetitions(String s1, int n1, String s2, int n2) {
 3         char[] arr1 = s1.toCharArray();
 4         char[] arr2 = s2.toCharArray();
 5         int i1 = 0, i2 = 0; // current position
 6         int count1 = 0, count2 = 0; //# of times pass through s1/s2's end
 7 
 8         while (count1 < n1) {
 9             if (arr1[i1] == arr2[i2]) {
10                 i2++;
11                 if (i2 == arr2.length) {
12                     i2 = 0;
13                     count2++;
14                 }
15             }
16             i1++;
17             if (i1 == arr1.length) {
18                 i1 = 0;
19                 count1++;
20             }
21         }
22         return count2/n2;
23     }
24 }

 

posted @ 2016-12-22 07:24  neverlandly  阅读(663)  评论(0)    收藏  举报
刷新页面返回顶部
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3