#include <bits/stdc++.h>
using namespace std;
const int MaxN = 1000000 + 5;
int N, L;
char str[MaxN], str2[MaxN];
struct SAM {
int cntv;
int nxt[MaxN];
int last[26], ch[26][MaxN];
SAM() { nxt[0] = -1; }
inline void insert(int c) {
cntv++; nxt[cntv] = last[c];
for (int i = 0; i < 26; ++i)
for (int p = last[i]; p != -1 && ch[c][p] == 0; p = nxt[p])
ch[c][p] = cntv;
last[c] = cntv;
}
inline bool check(int u, int x) {
if (x == L) return true;
int c = str2[x] - 'a';
if (ch[c][u] == 0) return false;
return check(ch[c][u], x + 1);
}
} T;
void init() {
scanf("%s", str);
scanf("%d", &N);
for (int i = 0; str[i]; ++i) T.insert(str[i] - 'a');
}
void solve() {
for (int i = 1; i <= N; ++i) {
scanf("%s", str2);
L = strlen(str2);
puts(T.check(0, 0) ? "Yes" : "No");
}
}
int main() {
init();
solve();
return 0;
}
文章名稱:序列自動(dòng)機(jī)
文章URL:http://aaarwkj.com/article14/godige.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供營(yíng)銷型網(wǎng)站建設(shè)、云服務(wù)器、Google、商城網(wǎng)站、虛擬主機(jī)、ChatGPT
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)
營(yíng)銷型網(wǎng)站建設(shè)知識(shí)