-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSimulacaoDeAutomatosFinitosDeterministicos.cpp
77 lines (58 loc) · 1.56 KB
/
SimulacaoDeAutomatosFinitosDeterministicos.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
/*
* Simulação de automatos finitos deterministicos
*
* Matheus N Ismael 09/10/2018
*/
#include <bits/stdc++.h>
using namespace std;
set<char> alph;
set<int> ef;
set<char> STRalph_to_SETalph(string Salph){
set<char> SETal;
for(unsigned i = 0 ; i < Salph.length(); i++)
SETal.insert(Salph[i]);
return SETal;
}
set<int> STRefs_to_SETefs(string Sef){
set<int> SETefs;
for(unsigned i = 0 ; i < Sef.length() ; i+= 2)
SETefs.insert(Sef[i]- '0');
return SETefs;
}
int processa(map<char,int> autom[], string ts , int idc , int ec){
if(ts[idc] == '@'){
if(ef.count(ec))
return 1;
return 0;
}
if(autom[ec].find(ts[idc]) == autom[ec].end() || alph.find(ts[idc]) == alph.end())
return 0;
return processa(autom,ts,idc+1,autom[ec].find(ts[idc])->second);
}
int main(){
string Salph,Sef;
int Q,S,D,N;
cin>>Salph;
cin>>Q;
cin>>S; getchar();
getline(cin,Sef);
cin>>D;
map<char,int> autom[Q+1]; //diagrama de estados;
for(int i = 0 ; i < D ; i++){ //leitura dos estados
int x,y; char c;
cin>>x>>c>>y;
autom[x].insert({c,y});
}
alph = STRalph_to_SETalph(Salph); // passa os elemenos da string do alfabeto para um set
ef = STRefs_to_SETefs(Sef); // passa os elemenos da string dos estados terminais para um set
cin>>N;
while(N--){
string ts;
cin>>ts;
cout << ts << endl;
if(processa(autom,ts,1,S))
cout<<"S\n";
else
cout<<"N\n";
}
}