前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >LWC 52:686. Repeated String Match

LWC 52:686. Repeated String Match

作者头像
用户1147447
发布2018-01-02 11:03:54
4830
发布2018-01-02 11:03:54
举报
文章被收录于专栏:机器学习入门机器学习入门

LWC 52:686. Repeated String Match

传送门:686. Repeated String Match

Problem:

Given two strings A and B, find the minimum number of times A has to be repeated such that B is a substring of it. If no such solution, return -1. For example, with A = “abcd” and B = “cdabcdab”. Return 3, because by repeating A three times (“abcdabcdabcd”), B is a substring of it; and B is not a substring of A repeated two times (“abcdabcd”).

Note:

The length of A and B will be between 1 and 10000.

思路: 重复多少次之后能够使得A包含B,关键在于何时停止重复,显然,如果A的repeat后的长度大于B时,即可停止搜索了,因为在此长度下A都不能包含B,那么repat的次数再大也没用。

代码如下:

代码语言:javascript
复制
    public int repeatedStringMatch(String A, String B) {
        int nb = B.length();
        int na = A.length();
        int times = nb / na + 2;
        StringBuilder sb = new StringBuilder(A);
        for (int i = 1; i <= times; ++i) {
            if (sb.toString().contains(B)) return i;
            else {
                sb.append(A);
            }
        }
        return -1;
    }

times的上界可以设置的大点,当然+2已经是最紧的上界了。

本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2017-10-02 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • LWC 52:686. Repeated String Match
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档