首页 > 代码库 > NYOJ题目1051simone牌文本编辑器
NYOJ题目1051simone牌文本编辑器
----------------------------------------
题目评论中有说使用KMP反倒超时的。。。
外加看到匹配串长度不超过10,最大也不过是10000^10,这点计算量cpu表示没问题。
所以,就是用傻傻的模拟。。。。不愧是水题,竟然AC了。。。。
AC代码:
1 import java.util.Scanner; 2 3 public class Main { 4 5 public static void main(String[] args) { 6 7 Scanner sc=new Scanner(System.in); 8 9 int times=Integer.parseInt(sc.nextLine());10 while(times-->0){11 12 String s1=sc.nextLine();13 String s2=sc.nextLine();14 15 int ans=matches(s1,s2);16 System.out.println(ans);17 18 }19 }20 21 public static int matches(String s1, String s2){22 int res=0;23 for(int i=0,end=s1.length()-s2.length();i<=end;i++){24 boolean isMatch=true;25 for(int j=0;j<s2.length() && isMatch;j++){26 if(!(s1.charAt(i+j)==s2.charAt(j))) isMatch=false;27 }28 if(isMatch) res++;29 }30 return res;31 }32 33 }
题目来源: http://acm.nyist.net/JudgeOnline/problem.php?pid=1051
NYOJ题目1051simone牌文本编辑器
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。