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

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>
            欧美电影打屁股sp| 亚洲高清不卡在线观看| 久久精品国产77777蜜臀 | 亚洲网站视频| 99亚洲精品| 一区二区久久久久久| 亚洲天堂av在线免费| 亚洲欧美一区在线| 久久亚洲国产精品日日av夜夜| 久久久久久久久久看片| 农村妇女精品| 日韩午夜免费视频| 新狼窝色av性久久久久久| 久久综合九色九九| 久久久精品国产免费观看同学| 国产伊人精品| 国产精品h在线观看| 国产精品美女主播| 国产精品久久久久久久久果冻传媒| 国产精品久久久久久户外露出| 国产日产欧产精品推荐色| 亚洲国产精品久久久久婷婷884 | 久久高清福利视频| 欧美肥婆在线| 亚洲欧美在线x视频| 乱中年女人伦av一区二区| 欧美日韩视频在线一区二区 | 亚洲三级性片| 亚洲欧美一区二区三区在线| 欧美1区2区| 国产欧美日韩在线| 亚洲免费高清视频| 美女免费视频一区| 午夜激情一区| 欧美丝袜第一区| 亚洲精品一区二区三区四区高清| 亚洲欧美日韩人成在线播放| 欧美国产日本在线| 欧美一区二视频| 欧美大片在线影院| 亚洲一区免费网站| 欧美日韩国产综合久久| …久久精品99久久香蕉国产| 欧美一二三区在线观看| 亚洲精品一品区二品区三品区| 久久久久久久精| 国产亚洲网站| 久久国产高清| 亚洲综合另类| 国产精品久久综合| 夜夜嗨av一区二区三区四季av| 欧美成人久久| 狼人天天伊人久久| 亚洲电影在线| 免费观看在线综合| 久久久噜噜噜久久中文字免| 国产麻豆9l精品三级站| 性娇小13――14欧美| 一区二区三区福利| 国产精品高清一区二区三区| 亚洲永久免费精品| 亚洲午夜在线视频| 国产欧美精品日韩区二区麻豆天美| 亚洲午夜在线观看| 一本色道久久99精品综合| 免费中文字幕日韩欧美| 久久久亚洲影院你懂的| 黄色欧美日韩| 欧美福利小视频| 男同欧美伦乱| 日韩网站在线看片你懂的| 亚洲精品免费一区二区三区| 欧美人体xx| 欧美日韩免费观看一区二区三区| 亚洲精品一区二区三区在线观看| 亚洲高清自拍| 国产精品99免视看9| 欧美亚洲视频在线看网址| 午夜精品国产更新| 精品粉嫩aⅴ一区二区三区四区| 欧美18av| 欧美日韩亚洲综合| 欧美在线视频在线播放完整版免费观看| 性久久久久久久| 亚洲国产成人tv| 99视频精品在线| 国产午夜亚洲精品不卡| 六月丁香综合| 欧美日产国产成人免费图片| 亚洲欧美不卡| 老司机一区二区| 亚洲一区在线观看免费观看电影高清| 亚洲宅男天堂在线观看无病毒| 黄色成人av| 中文国产一区| 亚洲国产裸拍裸体视频在线观看乱了| 亚洲国产日本| 国产欧美日韩精品丝袜高跟鞋| 美女任你摸久久| 国产精品美女久久久| 久久综合影视| 国产乱肥老妇国产一区二| 欧美成人午夜77777| 国产精品综合av一区二区国产馆| 欧美www视频| 国产日韩精品视频一区| 91久久精品久久国产性色也91| 国产日韩欧美中文| 日韩亚洲欧美成人一区| 樱桃成人精品视频在线播放| 一区二区欧美激情| 亚洲欧洲日本在线| 久久精品av麻豆的观看方式| 亚洲女优在线| 欧美日韩亚洲高清| 欧美电影电视剧在线观看| 日韩一区二区高清| 亚洲国产精品日韩| 欧美一区二区视频97| 亚洲综合精品| 欧美三级电影一区| 亚洲精品老司机| 亚洲欧洲日产国产综合网| 欧美自拍丝袜亚洲| 欧美一级视频免费在线观看| 欧美日韩免费高清| 亚洲激情一区二区| 亚洲精品视频在线看| 美女日韩欧美| 一区二区三区|亚洲午夜| 久久亚洲午夜电影| 久久一区二区三区四区五区| 国产亚洲美州欧州综合国| 亚洲一区二区三区免费在线观看| 99精品国产在热久久婷婷| 欧美成人免费在线视频| 亚洲国产精品99久久久久久久久| 一区二区在线视频观看| 久久精品国产77777蜜臀| 久久午夜激情| 在线观看亚洲a| 鲁大师影院一区二区三区| 免费欧美在线| 亚洲美女尤物影院| 欧美日韩国产色站一区二区三区| 亚洲精品国产品国语在线app| 亚洲精品美女在线| 欧美激情精品久久久六区热门 | 亚洲另类自拍| 亚洲一区免费视频| 国产精品女人网站| 欧美一区二区免费| 老牛影视一区二区三区| 亚洲成在人线av| 欧美精品久久一区| 亚洲午夜一区二区三区| 久久久久久久久久久久久9999| 狠狠色狠狠色综合日日91app| 亚洲欧美精品suv| 欧美一级淫片aaaaaaa视频| 国产精品免费观看视频| 亚洲午夜三级在线| 欧美精品999| 亚洲第一色在线| 亚洲精品日韩在线观看| 欧美成人一品| 亚洲黄色在线看| 中文亚洲免费| 欧美视频日韩视频| 一个色综合导航| 亚洲欧美综合| 国产日韩精品视频一区| 久久国产精品久久久久久电车| 久久精品亚洲精品| 国产一区二区久久| 久久综合给合| 亚洲国产欧美一区二区三区久久 | 亚洲理论在线观看| 亚洲在线黄色| 国产婷婷精品| 老妇喷水一区二区三区| 91久久精品一区二区三区| 亚洲精品小视频在线观看| 欧美日韩高清一区| 一区二区三区视频在线播放| 欧美一区二区视频网站| 国内精品嫩模av私拍在线观看| 欧美日韩国产丝袜另类| 久热精品在线| 欧美呦呦网站| 亚洲一区成人| 亚洲精品网站在线播放gif| 久久久久久久久久久成人| 亚洲性色视频| 欧美日韩一级大片网址| 国产精品一区二区久激情瑜伽| 久久国产精品久久久| 99视频精品免费观看| 欧美国产激情二区三区| 久久久国产精品一区|