青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

coreBugZJ

此 blog 已棄。

Computer Virus on Planet Pandora Description, ACM/ICPC 2010/2011 亞洲,福州區域賽 F, UVA 5103

5103 - Computer Virus on Planet Pandora Description
Asia - Fuzhou - 2010/2011

 

Aliens on planet Pandora also write computer programs like us. Their programs only consist of capital letters (` A' to ` Z') which they learned from the Earth. On planet Pandora, hackers make computer virus, so they also have anti-virus software. Of course they learned virus scanning algorithm from the Earth. Every virus has a pattern string which consists of only capital letters. If a virus's pattern string is a substring of a program, or the pattern string is a substring of the reverse of that program, they can say the program is infected by that virus. Give you a program and a list of virus pattern strings, please write a program to figure out how many viruses the program is infected by.

 

Input 

There are multiple test cases. The first line in the input is an integer T (T$ \le$10) indicating the number of test cases.

For each test case:

The first line is a integer n (0 < n$ \le$250) indicating the number of virus pattern strings.

Then n lines follows, each represents a virus pattern string. Every pattern string stands for a virus. It's guaranteed that those n pattern strings are all different so there are n different viruses. The length of pattern string is no more than 1,000 and a pattern string at least consists of one letter.

The last line of a test case is the program. The program may be described in a compressed format. A compressed program consists of capital letters and ``compressors". A ``compressor" is in the following format:

 


[qx]

 


q is a number (0 < q$ \le$5, 000, 000) and x is a capital letter. It means q consecutive letter x's in the original uncompressed program. For example, [6K] means ` KKKKKK' in the original program. So, if a compressed program is like:

 


AB[2D]E[7K]G

 


it actually is ABDDEKKKKKKKG after decompressed to original format.

The length of the program is at least 1 and at most 5,100,000, no matter in the compressed format or after it is decompressed to original format.

 

Output 

For each test case, print an integer K in a line meaning that the program is infected by K viruses.

 


Hint: In the second case in the sample input, the reverse of the program is ` GHIFEDCCBA', and ` GHI' is a substring of the reverse, so the program is infected by virus ` GHI'.

 

Sample Input 

 

3 
2
AB
DCB
DACB
3
ABC
CDE
GHI
ABCCDEFIHG
4
ABB
ACDEE
BBB
FEEE
A[2B]CD[4E]F

 

Sample Output 

 

0 
3
2

 


Fuzhou 2010-2011


AC 自動機。。。

  1 #include <iostream>
  2 #include <cstdio>
  3 
  4 using namespace std;
  5 
  6 const int ACTC = 26;
  7 const int ACTM = 200000;
  8 const int ACQL = ACTM;
  9 
 10 struct AC
 11 {
 12         int count;
 13         AC *fail;
 14         AC *ch[ ACTC ];
 15 };
 16 
 17 AC *que[ ACQL ];
 18 
 19 AC* ac_new( bool init = false ) {
 20         int i;
 21         AC *p;
 22         static AC memAC[ ACTM ];
 23         static int tot = 0;
 24         if ( init ) {
 25                 tot = 0;
 26                 return 0;
 27         }
 28         p = memAC + tot++;
 29         p->count = 0;
 30         p->fail  = 0;
 31         for ( i = 0; i < ACTC; ++i )
 32                 p->ch[ i ] = 0;
 33         return p;
 34 }
 35 
 36 int ac_add( AC* &root, const char *first, const char *last ) {
 37         AC ** p = &root;
 38         for ( ; ; ) {
 39                 if ( *== 0 ) *= ac_new();
 40                 if ( first == last ) return ++( (*p)->count );
 41                 p = &( (*p)->ch[ *first++ ] );
 42         }
 43 }
 44 
 45 void ac_build( AC *root ) {
 46         // root != 0
 47         int qh = 0, qt = 1, i;
 48         AC *pf, *pc, *pt;
 49         root->fail = 0;
 50         que[ 0 ] = root;
 51         while ( qh != qt ) {
 52                 pf = que[ qh ];
 53                 qh = ( qh + 1  ) % ACQL;
 54                 for ( i = 0; i < ACTC; ++i ) {
 55                         if ( pc = pf->ch[ i ] ) {
 56                                 for ( pt = pf->fail; pt && ( pt->ch[ i ] == 0 ); pt = pt->fail )
 57                                         ;
 58                                 pc->fail = pt ? pt->ch[ i ] : root;
 59                                 que[ qt ] = pc;
 60                                 qt = ( qt + 1 ) % ACQL;
 61                         }
 62                 }
 63         }
 64 }
 65 
 66 int ac_query( AC *root, const char *first, const char *last ) {
 67         // root != 0
 68         int ans = 0;
 69         AC *= root, *q;
 70         while ( first != last ) {
 71                 while ( p && ( p->ch[ *first ] == 0 ) ) {
 72                         p = p->fail;
 73                 }
 74                 if ( p ) {
 75                         q = p = p->ch[ *first++ ];
 76                         while ( q && ( q->count != -1 ) ) {
 77                                 ans += q->count;
 78                                 q->count = -1;
 79                                 q = q->fail;
 80                         }
 81                 }
 82                 else {
 83                         p = root;
 84                         ++first;
 85                 }
 86         }
 87         return ans;
 88 }
 89 
 90 char txt[ 5100009 ], pat[ 1009 ];
 91 AC *root;
 92 
 93 void expand( char *out ) {
 94         char ch;
 95         char *= out;
 96         ch = getchar();
 97         while ( (ch!='\n'&& (ch!=EOF) ) {
 98                 if ( ('A'<=(ch)) && ((ch)<='Z') ) {
 99                         *q++ = ch;
100                 }
101                 else {
102                         ch = getchar();
103                         int num = 0;
104                         while ( ('0'<=(ch)) && ((ch)<='9') ) {
105                                 num = num * 10 + ( ch - '0' );
106                                 ch = getchar();
107                         }
108                         while ( num-- > 0 ) {
109                                 *q++ = ch;
110                         }
111                         ch = getchar();
112                 }
113                 ch = getchar();
114         }
115         *= 0;
116 }
117 
118 int main() {
119         int td, n, ans;
120         char *pc, *ph, *pt;
121         scanf( "%d"&td );
122         while ( td-- ) {
123                 scanf( "%d%*c"&n );
124                 ac_new( true );
125                 root = 0;
126                 while ( n-- ) {
127                         gets( pat );
128                         for ( pc = pat; *pc; ++pc )
129                                 *pc -= 'A';
130                         ac_add( root, pat, pc );
131                 }
132                 ac_build( root );
133                 expand( txt );
134                 for ( pc = txt; *pc; ++pc )
135                         *pc -= 'A';
136                 ans = ac_query( root, txt, pc );
137                 ph = txt;
138                 pt = pc - 1;
139                 while ( ph < pt ) {
140                         char tmp = *ph;
141                         *ph = *pt;
142                         *pt = tmp;
143                         ++ph;
144                         --pt;
145                 }
146                 ans += ac_query( root, txt, pc );
147                 printf( "%d\n", ans );
148         }
149         return 0;
150 }
151 


posted on 2011-03-25 19:27 coreBugZJ 閱讀(2026) 評論(0)  編輯 收藏 引用 所屬分類: ACM

青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            91久久久久久久久| 欧美.www| 亚洲国产91| 欧美国产日韩一区二区三区| 久久亚洲精品一区二区| 欧美在线你懂的| 久久久国产成人精品| 久久全国免费视频| 亚洲国产成人精品久久| 亚洲精品日韩久久| 一区二区欧美在线观看| 亚洲欧美精品中文字幕在线| 久久成人精品视频| 欧美α欧美αv大片| 欧美三级免费| 伊人色综合久久天天| 亚洲精选在线| 欧美一区国产一区| 亚洲国产一区二区三区a毛片| 一区二区不卡在线视频 午夜欧美不卡'| 亚洲欧美日本国产有色| 老司机一区二区三区| 欧美视频1区| 在线精品在线| 先锋影音久久久| 亚洲第一精品夜夜躁人人躁| 亚洲一区二区三区乱码aⅴ| 久久婷婷国产综合精品青草| 欧美视频中文字幕| 亚洲丰满在线| 欧美自拍偷拍| 一区二区三区四区精品| 蜜臀a∨国产成人精品| 国产欧美不卡| 亚洲一线二线三线久久久| 欧美激情一区二区三区蜜桃视频| 中文在线资源观看视频网站免费不卡| 久久久国产91| 国产一区二区日韩| 先锋影音久久| 亚洲一区二区三区视频播放| 欧美精品在线免费| 亚洲第一视频网站| 久久久最新网址| 亚洲已满18点击进入久久| 欧美日韩岛国| 亚洲精品影院在线观看| 欧美高清在线| 蜜桃精品久久久久久久免费影院| 国产视频在线观看一区| 欧美日韩亚洲一区二区三区在线| 亚洲国产精彩中文乱码av在线播放| 久久gogo国模裸体人体| 亚洲主播在线观看| 国产精品美女久久福利网站| 在线亚洲电影| 中文一区二区| 国产精品视频观看| 亚洲欧美日韩国产| 亚洲欧美成人一区二区三区| 国产精品一区二区三区免费观看| 亚洲欧美国产高清va在线播| 亚洲深夜福利| 国产欧美一区二区精品仙草咪| 久久精品国产久精国产爱| 亚欧成人精品| 亚洲国产精品一区| 亚洲欧洲精品成人久久奇米网 | 欧美福利精品| 麻豆九一精品爱看视频在线观看免费| 永久91嫩草亚洲精品人人| 麻豆国产精品777777在线| 久久久久五月天| 亚洲精品在线二区| 中文一区字幕| 韩国美女久久| 亚洲精品色婷婷福利天堂| 欧美日韩一区二区三区高清| 亚洲男女自偷自拍图片另类| 午夜免费在线观看精品视频| 国色天香一区二区| 亚洲大胆人体在线| 欧美亚一区二区| 久色成人在线| 欧美色另类天堂2015| 久久嫩草精品久久久精品| 欧美xxxx在线观看| 亚洲欧美怡红院| 久久久中精品2020中文| 一本到高清视频免费精品| 亚洲一区二三| 亚洲精品日产精品乱码不卡| 亚洲综合精品自拍| 亚洲精品一区二区三区婷婷月| 亚洲免费在线观看| 99re6这里只有精品视频在线观看| 亚洲色无码播放| 亚洲欧洲视频在线| 亚洲欧美国产精品va在线观看| 亚洲高清资源| 午夜精品理论片| 一区二区三区欧美激情| 欧美在线日韩在线| 亚洲在线免费观看| 欧美高清视频在线| 久久视频在线看| 欧美日韩精品免费看| 巨乳诱惑日韩免费av| 国产精品成人va在线观看| 欧美激情一区二区三区全黄| 国产视频久久| 亚洲午夜激情网站| 99精品福利视频| 亚洲三级影院| 永久域名在线精品| 香蕉av777xxx色综合一区| 99精品欧美一区| 欧美va亚洲va国产综合| 久久综合伊人| 国产亚洲a∨片在线观看| 日韩亚洲欧美在线观看| 亚洲精品久久久久久一区二区| 久久精品理论片| 久久电影一区| 国产伦理一区| 亚洲欧美在线观看| 欧美一区二区在线视频| 欧美午夜精品理论片a级大开眼界| 欧美黑人在线观看| 亚洲国产精品成人精品| 久久深夜福利免费观看| 久久米奇亚洲| 狠狠久久婷婷| 噜噜噜91成人网| 亚洲国产精品v| 亚洲精选在线| 欧美日韩理论| 亚洲午夜久久久| 欧美影院成人| 国产一区二区三区无遮挡| 欧美在线欧美在线| 欧美成年人视频网站| 亚洲精选视频在线| 欧美日韩免费一区| 亚洲在线一区二区| 久久精品国产99| 韩国福利一区| 欧美大片va欧美在线播放| 亚洲毛片在线免费观看| 亚洲影视九九影院在线观看| 国产精品国码视频| 欧美一区二区三区在线视频 | 最新成人av在线| 欧美国产一区二区三区激情无套| 亚洲肉体裸体xxxx137| 亚洲欧美色一区| 在线成人国产| 欧美天堂亚洲电影院在线播放| 亚洲一区二区免费看| 六月婷婷久久| 日韩香蕉视频| 国产毛片精品视频| 久久综合久久综合久久| 最近中文字幕日韩精品| 亚洲免费在线观看视频| 国产真实乱偷精品视频免| 老牛影视一区二区三区| 亚洲精品一区二区三区福利| 亚洲欧美在线另类| 亚洲第一综合天堂另类专| 欧美日本一区二区高清播放视频| 亚洲在线电影| 亚洲国产欧美一区| 欧美一区二区黄| 亚洲精品国产精品国自产观看浪潮 | 欧美激情女人20p| 亚洲伦理久久| 鲁大师影院一区二区三区| 欧美日韩精品在线观看| 日韩视频―中文字幕| 久久青草福利网站| 亚洲尤物视频网| 亚洲黄色免费电影| 国产一区导航| 国产伦一区二区三区色一情| 欧美精品精品一区| 久久综合999| 欧美一级欧美一级在线播放| 亚洲欧洲精品一区二区精品久久久| 久久成人精品无人区| 中文在线一区| 亚洲伦理网站| 亚洲国产影院| 亚洲高清av| 精品成人一区| 狠狠操狠狠色综合网| 国产日韩在线一区二区三区| 国产精品高潮呻吟视频| 欧美日韩国产免费| 欧美日本亚洲|