POJ 3461 kmp

来源:http://www.cnblogs.com/zwfymqz/archive/2017/05/05/6814720.html
-Advertisement-
Play Games

Oulipo Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 40168 Accepted: 16135 Description The French author Georges Perec (1936–1982) once w ...


Oulipo
Time Limit: 1000MS   Memory Limit: 65536K
Total Submissions: 40168   Accepted: 16135

Description

The French author Georges Perec (1936–1982) once wrote a book, La disparition, without the letter 'e'. He was a member of the Oulipo group. A quote from the book:

Tout avait Pair normal, mais tout s’affirmait faux. Tout avait Fair normal, d’abord, puis surgissait l’inhumain, l’affolant. Il aurait voulu savoir où s’articulait l’association qui l’unissait au roman : stir son tapis, assaillant à tout instant son imagination, l’intuition d’un tabou, la vision d’un mal obscur, d’un quoi vacant, d’un non-dit : la vision, l’avision d’un oubli commandant tout, où s’abolissait la raison : tout avait l’air normal mais…

Perec would probably have scored high (or rather, low) in the following contest. People are asked to write a perhaps even meaningful text on some subject with as few occurrences of a given “word” as possible. Our task is to provide the jury with a program that counts these occurrences, in order to obtain a ranking of the competitors. These competitors often write very long texts with nonsense meaning; a sequence of 500,000 consecutive 'T's is not unusual. And they never use spaces.

So we want to quickly find out how often a word, i.e., a given string, occurs in a text. More formally: given the alphabet {'A', 'B', 'C', …, 'Z'} and two finite strings over that alphabet, a word W and a text T, count the number of occurrences of W in T. All the consecutive characters of W must exactly match consecutive characters of T. Occurrences may overlap.

Input

The first line of the input file contains a single number: the number of test cases to follow. Each test case has the following format:

  • One line with the word W, a string over {'A', 'B', 'C', …, 'Z'}, with 1 ≤ |W| ≤ 10,000 (here |W| denotes the length of the string W).
  • One line with the text T, a string over {'A', 'B', 'C', …, 'Z'}, with |W| ≤ |T| ≤ 1,000,000.

Output

For every test case in the input file, the output should contain a single number, on a single line: the number of occurrences of the word W in the text T.

Sample Input

3
BAPC
BAPC
AZA
AZAZAZA
VERDI
AVERDXIVYERDIAN

Sample Output

1
3
0

Source

BAPC 2006 Qualification   莫名其妙TLE
 1 #include<iostream>
 2 #include<cstdio>
 3 #include<cstring>
 4 using namespace std;
 5 char a[10001];
 6 char b[1000001];
 7 int  p[10001];
 8 int la,lb;
 9 int j;
10 int ans;
11 inline void makep()
12 {
13     
14     j=0;
15     for(int i=1;i<la;i++)
16     {
17         while(j>0&&a[i]!=a[j])
18         j=p[j];
19         if(a[i]==a[j])
20         j++;
21         p[i]=j;
22     }
23     return ;
24 }
25 inline void KMP()
26 {
27     j=0;
28     ans=0;
29     for(int i=0;i<lb;i++)
30     {
31         while(b[i]!=a[j]&&j>0)
32         j=p[j-1];
33         if(b[i]==a[j])
34         j++;
35         if(j==la)
36         {
37             ans++;
38             j=p[j-1];        
39         }
40         
41     }
42     printf("%d\n",ans);
43     return ;
44 }
45 
46 int main()
47 {
48     int n;
49     scanf("%d",&n);
50     
51     for(int i=1;i<=n;i++)
52     {
53         memset(p,0,sizeof(p));
54         scanf("%s%s",a,b);
55         la=strlen(a);lb=strlen(b);
56         makep();
57         KMP();
58     }
59         
60     
61     return 0;
62 }
TLE

 

AC

 1 #include<cstdio>
 2 #include<cstdlib>
 3 #include<cstring>
 4 #include<iostream>
 5 using namespace std;
 6 
 7 int n,la,lb;
 8 int next[100010];
 9 char a[1000010],b[100010];
10 
11 void getnext()
12 {
13     int j=-1;
14     next[0]=-1;
15     for(int i=1;i<lb;i++)
16     {
17         if(j!=-1 && b[j+1]!=b[i])    j=next[j];
18         if(b[j+1]==b[i])    j++;
19         next[i]=j;
20     }
21 }
22 
23 int kmp()
24 {
25     int ans=0;
26     int j=-1;
27     for(int i=0;i<la;i++)
28     {
29         if(j!=-1 && a[i]!=b[j+1])    j=next[j];
30         if(b[j+1]==a[i])    j++;
31         if(j==lb-1)    
32         {
33             ans++;    
34             j=next[j];
35         }    
36     }
37     return ans;
38 }
39 
40 int main()
41 {
42     scanf("%d",&n);
43     for(int u=1;u<=n;u++)
44     {
45         scanf("%s %s",b,a);
46         la=strlen(a);
47         lb=strlen(b);
48         getnext();
49         printf("%d\n",kmp());
50     }
51 }
AC

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 這兩個函數比較簡單,我這裡直接寫例子,但是有一點一定要註意,json數據只支持utf-8格式,GBK格式的數據轉換為json會報錯! json_encode()用法: <?php$data =array(‘name’=>’jianqingwang’,‘sex’=>’man’,‘title’=>’PH ...
  • 文件的編碼 執行結果: 文本文件就是位元組序列,可以是任意編碼的位元組序列。 如果我們在中文機器上直接創建文本文件,那麼該文本文件只認識ansi編碼(中文系統下,ansi編碼代表gbk編碼) ...
  • explode()函數的作用:使用一個字元串分割另一個字元串,打散為數組。 例如: 字元串 根據空格分割後:$pieces = explode(” “, $pizza); $pieces是分割後的數組,我們列印出來看下 piece1piece2piece3piece4piece5piece6 例子2 ...
  • //1.導入jar包,log4j-1.2.17.jar//2.src下創建log4j.properties文件//3.配置properties文件/*log4j.rootLogger(預設是對整個工程生效)=DEBUG,stdout(控制台),a, b, …日誌級別(ALL<DEBUG<INFO<W ...
  • rand()函數用戶獲取隨機數,具體用法如下: rand()可以設置0個參數或者兩個參數,如rand($min,$max),$min表示從XX開始取值,$max表示最大隻能為XX 例如: mt_rand() 用法跟rand()類似,但是mt_rand()的執行效率更高,平常使用也推薦用mt_rand ...
  • 【題目描述】 一個字元串的首碼是指包含該字元第一個字母的連續子串,例如:abcd的所有首碼為a, ab, abc, abcd。 給出一個字元串S,求其所有首碼中,字元長度與出現次數的乘積的最大值。 例如:S = "abababa" 所有的首碼如下: "a", 長度與出現次數的乘積 1 * 4 = 4 ...
  • ALDS1_9_A/ALDS1_9_B/ALDS1_9_C/ALDS1_10_A/ALDS1_10_C/ALDS1_10_B ...
  • 今天看了廖雪峰老師的-使用元類-這一節;不甚解。 有網友推薦如下 一篇 python 類和元類詳解 https://www.douban.com/note/580173500/ ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...