记录编号 95201 评测结果 A
题目名称 [POJ 3461] 乌力波 最终得分 100
用户昵称 GravatarChenyao2333 是否通过 通过
代码语言 C++ 运行时间 0.040 s
提交时间 2014-04-04 18:37:17 内存使用 1.32 MiB
显示代码纯文本
  1. #include<stdio.h>
  2. #include<algorithm>
  3. #include<string.h>
  4. #include<iostream>
  5.  
  6. using namespace std;
  7.  
  8. const int MAXW=10000+100;
  9. const int MAXT=1000000+100;
  10.  
  11. struct kmp{
  12. int w_len;
  13. int f[MAXW];
  14. int get_fail(char* word){
  15. memset(f,0,sizeof(f));
  16. f[0]=f[1]=0;
  17. w_len=strlen(word);
  18. for(int i=1;i<w_len;i++){
  19. int x=f[i];
  20. while(x && word[i]!=word[x]){
  21. x=f[x];
  22. }
  23. f[i+1]= word[i]==word[x] ? x+1:0;
  24. }
  25. }
  26. int find(char *word,char *T){
  27. int x=0,ans=0;
  28. for(int i=0;T[i];i++){
  29. while(x && word[x]!=T[i])x=f[x];
  30. if(word[x]==T[i])x++;
  31. if(x==w_len)ans++;
  32. }
  33. return ans;
  34. }
  35. void test(){
  36. for(int i=0;i<=w_len;i++){
  37. printf("f[%d]=%d\n",i,f[i]);
  38. }
  39. }
  40. }solver;
  41.  
  42. void open(){
  43. freopen("oulipo.in","r",stdin);
  44. freopen("oulipo.out","w",stdout);
  45. }
  46.  
  47. char ch1[MAXW],ch2[MAXT];
  48.  
  49. void work(){
  50. int t;cin>>t;
  51. while((t--)>0){
  52. scanf("%s %s",&ch1,&ch2);
  53. solver.get_fail(ch1);
  54. //solver.test();
  55. cout<<solver.find(ch1,ch2)<<endl;
  56. }
  57. }
  58.  
  59. int main(){
  60. //char ch[]={"abab"};
  61. //solver.get_fail(ch);
  62. //cout<<solver.find(ch,"ababaababab");
  63. //solver.test();
  64. open();
  65. work();
  66. return 0;
  67. }