query_id
stringlengths
36
36
fsm_id
stringclasses
325 values
fsm_json
stringclasses
276 values
difficulty_level
int64
1
3
transition_matrix
stringclasses
268 values
query
stringlengths
146
431
answer
stringclasses
13 values
substring_index
int64
1
29
d09b9a12-1e85-42f2-8a87-8e5b032ef922
7977aff3-03c2-4bb8-a404-ccb4c6c11ae1
{"states": ["s0", "s1", "s2", "s3", "s4"], "alphabets": "abcd", "accepting_states": ["s3", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s4"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "d", "toStates": ["s2"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s4", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s4", "symbol": "c", "toStates": ["s2"]}, {"fromState": "s4", "symbol": "d", "toStates": ["s3"]}]}
2
{"a":{"s0":"s3","s1":"s4","s2":"s3","s3":"s2","s4":"s1"},"b":{"s0":"s3","s1":"s3","s2":"s1","s3":"s3","s4":"s1"},"c":{"s0":"s3","s1":"s1","s2":"s4","s3":"s1","s4":"s2"},"d":{"s0":"s3","s1":"s3","s2":"s3","s3":"s2","s4":"s3"}}
Given the following FSM: a b c d s0 s3 s3 s3 s3 s1 s4 s3 s1 s3 s2 s3 s1 s4 s3 s3 s2 s3 s1 s2 s4 s1 s1 s2 s3 Initial state: s0, and Accepting states: s3, s1 What will be the state after reading the following input: adacccdccdcabbccdc?
s1
18
e2dad7eb-ea2d-4b1c-9031-065cd95462a1
7977aff3-03c2-4bb8-a404-ccb4c6c11ae1
{"states": ["s0", "s1", "s2", "s3", "s4"], "alphabets": "abcd", "accepting_states": ["s3", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s4"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "d", "toStates": ["s2"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s4", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s4", "symbol": "c", "toStates": ["s2"]}, {"fromState": "s4", "symbol": "d", "toStates": ["s3"]}]}
2
{"a":{"s0":"s3","s1":"s4","s2":"s3","s3":"s2","s4":"s1"},"b":{"s0":"s3","s1":"s3","s2":"s1","s3":"s3","s4":"s1"},"c":{"s0":"s3","s1":"s1","s2":"s4","s3":"s1","s4":"s2"},"d":{"s0":"s3","s1":"s3","s2":"s3","s3":"s2","s4":"s3"}}
Given the following FSM: a b c d s0 s3 s3 s3 s3 s1 s4 s3 s1 s3 s2 s3 s1 s4 s3 s3 s2 s3 s1 s2 s4 s1 s1 s2 s3 Initial state: s0, and Accepting states: s3, s1 What will be the state after reading the following input: adacccdccdcabbccdcc?
s1
19
21f4d889-b660-4b00-b445-be6335457231
7977aff3-03c2-4bb8-a404-ccb4c6c11ae1
{"states": ["s0", "s1", "s2", "s3", "s4"], "alphabets": "abcd", "accepting_states": ["s3", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s4"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "d", "toStates": ["s2"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s4", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s4", "symbol": "c", "toStates": ["s2"]}, {"fromState": "s4", "symbol": "d", "toStates": ["s3"]}]}
2
{"a":{"s0":"s3","s1":"s4","s2":"s3","s3":"s2","s4":"s1"},"b":{"s0":"s3","s1":"s3","s2":"s1","s3":"s3","s4":"s1"},"c":{"s0":"s3","s1":"s1","s2":"s4","s3":"s1","s4":"s2"},"d":{"s0":"s3","s1":"s3","s2":"s3","s3":"s2","s4":"s3"}}
Given the following FSM: a b c d s0 s3 s3 s3 s3 s1 s4 s3 s1 s3 s2 s3 s1 s4 s3 s3 s2 s3 s1 s2 s4 s1 s1 s2 s3 Initial state: s0, and Accepting states: s3, s1 What will be the state after reading the following input: adacccdccdcabbccdccc?
s1
20
cc507c5b-1df6-4e01-8814-dfeb8780f4e2
7977aff3-03c2-4bb8-a404-ccb4c6c11ae1
{"states": ["s0", "s1", "s2", "s3", "s4"], "alphabets": "abcd", "accepting_states": ["s3", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s4"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "d", "toStates": ["s2"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s4", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s4", "symbol": "c", "toStates": ["s2"]}, {"fromState": "s4", "symbol": "d", "toStates": ["s3"]}]}
2
{"a":{"s0":"s3","s1":"s4","s2":"s3","s3":"s2","s4":"s1"},"b":{"s0":"s3","s1":"s3","s2":"s1","s3":"s3","s4":"s1"},"c":{"s0":"s3","s1":"s1","s2":"s4","s3":"s1","s4":"s2"},"d":{"s0":"s3","s1":"s3","s2":"s3","s3":"s2","s4":"s3"}}
Given the following FSM: a b c d s0 s3 s3 s3 s3 s1 s4 s3 s1 s3 s2 s3 s1 s4 s3 s3 s2 s3 s1 s2 s4 s1 s1 s2 s3 Initial state: s0, and Accepting states: s3, s1 What will be the state after reading the following input: adacccdccdcabbccdcccc?
s1
21
91b50e4d-c65f-4b4a-8526-dbd12d749f20
7977aff3-03c2-4bb8-a404-ccb4c6c11ae1
{"states": ["s0", "s1", "s2", "s3", "s4"], "alphabets": "abcd", "accepting_states": ["s3", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s4"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "d", "toStates": ["s2"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s4", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s4", "symbol": "c", "toStates": ["s2"]}, {"fromState": "s4", "symbol": "d", "toStates": ["s3"]}]}
2
{"a":{"s0":"s3","s1":"s4","s2":"s3","s3":"s2","s4":"s1"},"b":{"s0":"s3","s1":"s3","s2":"s1","s3":"s3","s4":"s1"},"c":{"s0":"s3","s1":"s1","s2":"s4","s3":"s1","s4":"s2"},"d":{"s0":"s3","s1":"s3","s2":"s3","s3":"s2","s4":"s3"}}
Given the following FSM: a b c d s0 s3 s3 s3 s3 s1 s4 s3 s1 s3 s2 s3 s1 s4 s3 s3 s2 s3 s1 s2 s4 s1 s1 s2 s3 Initial state: s0, and Accepting states: s3, s1 What will be the state after reading the following input: adacccdccdcabbccdccccd?
s3
22
ca6cd437-7ead-408d-8f3e-26a5b6305ebb
7977aff3-03c2-4bb8-a404-ccb4c6c11ae1
{"states": ["s0", "s1", "s2", "s3", "s4"], "alphabets": "abcd", "accepting_states": ["s3", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s4"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "d", "toStates": ["s2"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s4", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s4", "symbol": "c", "toStates": ["s2"]}, {"fromState": "s4", "symbol": "d", "toStates": ["s3"]}]}
2
{"a":{"s0":"s3","s1":"s4","s2":"s3","s3":"s2","s4":"s1"},"b":{"s0":"s3","s1":"s3","s2":"s1","s3":"s3","s4":"s1"},"c":{"s0":"s3","s1":"s1","s2":"s4","s3":"s1","s4":"s2"},"d":{"s0":"s3","s1":"s3","s2":"s3","s3":"s2","s4":"s3"}}
Given the following FSM: a b c d s0 s3 s3 s3 s3 s1 s4 s3 s1 s3 s2 s3 s1 s4 s3 s3 s2 s3 s1 s2 s4 s1 s1 s2 s3 Initial state: s0, and Accepting states: s3, s1 What will be the state after reading the following input: adacccdccdcabbccdccccdd?
s2
23
0f53f6c3-0636-4b09-8aef-eb0a7356b0a7
7977aff3-03c2-4bb8-a404-ccb4c6c11ae1
{"states": ["s0", "s1", "s2", "s3", "s4"], "alphabets": "abcd", "accepting_states": ["s3", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s4"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "d", "toStates": ["s2"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s4", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s4", "symbol": "c", "toStates": ["s2"]}, {"fromState": "s4", "symbol": "d", "toStates": ["s3"]}]}
2
{"a":{"s0":"s3","s1":"s4","s2":"s3","s3":"s2","s4":"s1"},"b":{"s0":"s3","s1":"s3","s2":"s1","s3":"s3","s4":"s1"},"c":{"s0":"s3","s1":"s1","s2":"s4","s3":"s1","s4":"s2"},"d":{"s0":"s3","s1":"s3","s2":"s3","s3":"s2","s4":"s3"}}
Given the following FSM: a b c d s0 s3 s3 s3 s3 s1 s4 s3 s1 s3 s2 s3 s1 s4 s3 s3 s2 s3 s1 s2 s4 s1 s1 s2 s3 Initial state: s0, and Accepting states: s3, s1 What will be the state after reading the following input: adacccdccdcabbccdccccddd?
s3
24
03622fa5-114c-407c-8754-9f9d93f4d00b
7977aff3-03c2-4bb8-a404-ccb4c6c11ae1
{"states": ["s0", "s1", "s2", "s3", "s4"], "alphabets": "abcd", "accepting_states": ["s3", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s4"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "d", "toStates": ["s2"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s4", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s4", "symbol": "c", "toStates": ["s2"]}, {"fromState": "s4", "symbol": "d", "toStates": ["s3"]}]}
2
{"a":{"s0":"s3","s1":"s4","s2":"s3","s3":"s2","s4":"s1"},"b":{"s0":"s3","s1":"s3","s2":"s1","s3":"s3","s4":"s1"},"c":{"s0":"s3","s1":"s1","s2":"s4","s3":"s1","s4":"s2"},"d":{"s0":"s3","s1":"s3","s2":"s3","s3":"s2","s4":"s3"}}
Given the following FSM: a b c d s0 s3 s3 s3 s3 s1 s4 s3 s1 s3 s2 s3 s1 s4 s3 s3 s2 s3 s1 s2 s4 s1 s1 s2 s3 Initial state: s0, and Accepting states: s3, s1 What will be the state after reading the following input: adacccdccdcabbccdccccdddc?
s1
25
9dbea677-c135-473f-bb1d-e96e01c1bcf0
7977aff3-03c2-4bb8-a404-ccb4c6c11ae1
{"states": ["s0", "s1", "s2", "s3", "s4"], "alphabets": "abcd", "accepting_states": ["s3", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s4"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "d", "toStates": ["s2"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s4", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s4", "symbol": "c", "toStates": ["s2"]}, {"fromState": "s4", "symbol": "d", "toStates": ["s3"]}]}
2
{"a":{"s0":"s3","s1":"s4","s2":"s3","s3":"s2","s4":"s1"},"b":{"s0":"s3","s1":"s3","s2":"s1","s3":"s3","s4":"s1"},"c":{"s0":"s3","s1":"s1","s2":"s4","s3":"s1","s4":"s2"},"d":{"s0":"s3","s1":"s3","s2":"s3","s3":"s2","s4":"s3"}}
Given the following FSM: a b c d s0 s3 s3 s3 s3 s1 s4 s3 s1 s3 s2 s3 s1 s4 s3 s3 s2 s3 s1 s2 s4 s1 s1 s2 s3 Initial state: s0, and Accepting states: s3, s1 What will be the state after reading the following input: adacccdccdcabbccdccccdddcc?
s1
26
72b57058-7174-4aeb-b178-d95c2b40ad89
7977aff3-03c2-4bb8-a404-ccb4c6c11ae1
{"states": ["s0", "s1", "s2", "s3", "s4"], "alphabets": "abcd", "accepting_states": ["s3", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s4"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "d", "toStates": ["s2"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s4", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s4", "symbol": "c", "toStates": ["s2"]}, {"fromState": "s4", "symbol": "d", "toStates": ["s3"]}]}
2
{"a":{"s0":"s3","s1":"s4","s2":"s3","s3":"s2","s4":"s1"},"b":{"s0":"s3","s1":"s3","s2":"s1","s3":"s3","s4":"s1"},"c":{"s0":"s3","s1":"s1","s2":"s4","s3":"s1","s4":"s2"},"d":{"s0":"s3","s1":"s3","s2":"s3","s3":"s2","s4":"s3"}}
Given the following FSM: a b c d s0 s3 s3 s3 s3 s1 s4 s3 s1 s3 s2 s3 s1 s4 s3 s3 s2 s3 s1 s2 s4 s1 s1 s2 s3 Initial state: s0, and Accepting states: s3, s1 What will be the state after reading the following input: adacccdccdcabbccdccccdddccd?
s3
27
c71edb80-d5a1-4434-a5f6-e85f6ff4edae
7977aff3-03c2-4bb8-a404-ccb4c6c11ae1
{"states": ["s0", "s1", "s2", "s3", "s4"], "alphabets": "abcd", "accepting_states": ["s3", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s4"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "d", "toStates": ["s2"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s4", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s4", "symbol": "c", "toStates": ["s2"]}, {"fromState": "s4", "symbol": "d", "toStates": ["s3"]}]}
2
{"a":{"s0":"s3","s1":"s4","s2":"s3","s3":"s2","s4":"s1"},"b":{"s0":"s3","s1":"s3","s2":"s1","s3":"s3","s4":"s1"},"c":{"s0":"s3","s1":"s1","s2":"s4","s3":"s1","s4":"s2"},"d":{"s0":"s3","s1":"s3","s2":"s3","s3":"s2","s4":"s3"}}
Given the following FSM: a b c d s0 s3 s3 s3 s3 s1 s4 s3 s1 s3 s2 s3 s1 s4 s3 s3 s2 s3 s1 s2 s4 s1 s1 s2 s3 Initial state: s0, and Accepting states: s3, s1 What will be the state after reading the following input: adacccdccdcabbccdccccdddccdb?
s3
28
a05a6b9c-04b5-49b0-bce2-a484a3abba1b
7977aff3-03c2-4bb8-a404-ccb4c6c11ae1
{"states": ["s0", "s1", "s2", "s3", "s4"], "alphabets": "abcd", "accepting_states": ["s3", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s4"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "d", "toStates": ["s2"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s4", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s4", "symbol": "c", "toStates": ["s2"]}, {"fromState": "s4", "symbol": "d", "toStates": ["s3"]}]}
2
{"a":{"s0":"s3","s1":"s4","s2":"s3","s3":"s2","s4":"s1"},"b":{"s0":"s3","s1":"s3","s2":"s1","s3":"s3","s4":"s1"},"c":{"s0":"s3","s1":"s1","s2":"s4","s3":"s1","s4":"s2"},"d":{"s0":"s3","s1":"s3","s2":"s3","s3":"s2","s4":"s3"}}
Given the following FSM: a b c d s0 s3 s3 s3 s3 s1 s4 s3 s1 s3 s2 s3 s1 s4 s3 s3 s2 s3 s1 s2 s4 s1 s1 s2 s3 Initial state: s0, and Accepting states: s3, s1 What will be the state after reading the following input: adacccdccdcabbccdccccdddccdbd?
s2
29
35e6cae9-9da8-4bc4-a75c-9444f25c68a6
2955a839-e81f-49a1-bb10-8a313684e71a
{"states": ["s0", "s1"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}]}
3
{"a":{"s0":"s1","s1":"s1"}}
Given the following FSM: a s0 s1 s1 s1 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: a?
s1
1
d7c6c0a3-bc3d-4cbe-9470-9286c5bfa03e
2955a839-e81f-49a1-bb10-8a313684e71a
{"states": ["s0", "s1"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}]}
3
{"a":{"s0":"s1","s1":"s1"}}
Given the following FSM: a s0 s1 s1 s1 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: aa?
s1
2
d4eeed7f-c14a-4954-b80e-74317966d0f6
2955a839-e81f-49a1-bb10-8a313684e71a
{"states": ["s0", "s1"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}]}
3
{"a":{"s0":"s1","s1":"s1"}}
Given the following FSM: a s0 s1 s1 s1 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: aaa?
s1
3
14862f05-d27b-4429-98b1-988d8b45a94a
2955a839-e81f-49a1-bb10-8a313684e71a
{"states": ["s0", "s1"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}]}
3
{"a":{"s0":"s1","s1":"s1"}}
Given the following FSM: a s0 s1 s1 s1 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: aaaa?
s1
4
513eb05c-1ac5-4b75-bcab-d22c3a4d10ae
2955a839-e81f-49a1-bb10-8a313684e71a
{"states": ["s0", "s1"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}]}
3
{"a":{"s0":"s1","s1":"s1"}}
Given the following FSM: a s0 s1 s1 s1 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: aaaaa?
s1
5
da6a67cf-572b-46ed-965e-e6b96291f455
2955a839-e81f-49a1-bb10-8a313684e71a
{"states": ["s0", "s1"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}]}
3
{"a":{"s0":"s1","s1":"s1"}}
Given the following FSM: a s0 s1 s1 s1 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: aaaaaa?
s1
6
a2287424-9bb7-45fb-8dd2-db3edbd02b6e
2955a839-e81f-49a1-bb10-8a313684e71a
{"states": ["s0", "s1"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}]}
3
{"a":{"s0":"s1","s1":"s1"}}
Given the following FSM: a s0 s1 s1 s1 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: aaaaaaa?
s1
7
03c59a3d-fcbf-427d-8d4b-119d9e8ebf9d
2955a839-e81f-49a1-bb10-8a313684e71a
{"states": ["s0", "s1"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}]}
3
{"a":{"s0":"s1","s1":"s1"}}
Given the following FSM: a s0 s1 s1 s1 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: aaaaaaaa?
s1
8
84a9ebf0-6caf-4869-8f8b-20066a6f306d
2955a839-e81f-49a1-bb10-8a313684e71a
{"states": ["s0", "s1"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}]}
3
{"a":{"s0":"s1","s1":"s1"}}
Given the following FSM: a s0 s1 s1 s1 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: aaaaaaaaa?
s1
9
b94c9361-9ee7-4167-a67b-8278b5b5393f
2955a839-e81f-49a1-bb10-8a313684e71a
{"states": ["s0", "s1"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}]}
3
{"a":{"s0":"s1","s1":"s1"}}
Given the following FSM: a s0 s1 s1 s1 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: aaaaaaaaaa?
s1
10
bbeeed9e-97a5-49e9-8dc4-4d7d2170ea9f
2955a839-e81f-49a1-bb10-8a313684e71a
{"states": ["s0", "s1"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}]}
3
{"a":{"s0":"s1","s1":"s1"}}
Given the following FSM: a s0 s1 s1 s1 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: aaaaaaaaaaa?
s1
11
fffda53c-2307-423e-8e70-016158aa3f91
2955a839-e81f-49a1-bb10-8a313684e71a
{"states": ["s0", "s1"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}]}
3
{"a":{"s0":"s1","s1":"s1"}}
Given the following FSM: a s0 s1 s1 s1 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: aaaaaaaaaaaa?
s1
12
cc391907-5329-4d16-8245-7c515188a5fe
2955a839-e81f-49a1-bb10-8a313684e71a
{"states": ["s0", "s1"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}]}
3
{"a":{"s0":"s1","s1":"s1"}}
Given the following FSM: a s0 s1 s1 s1 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: aaaaaaaaaaaaa?
s1
13
f4c5d3a6-1f64-442b-bb82-57eb983639ce
2955a839-e81f-49a1-bb10-8a313684e71a
{"states": ["s0", "s1"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}]}
3
{"a":{"s0":"s1","s1":"s1"}}
Given the following FSM: a s0 s1 s1 s1 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: aaaaaaaaaaaaaa?
s1
14
0a5a41ae-4ca7-41e6-9575-afee00ce3ccc
2955a839-e81f-49a1-bb10-8a313684e71a
{"states": ["s0", "s1"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}]}
3
{"a":{"s0":"s1","s1":"s1"}}
Given the following FSM: a s0 s1 s1 s1 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: aaaaaaaaaaaaaaa?
s1
15
8a91bb11-4fce-4c85-9e6a-1d907c1cd28b
2955a839-e81f-49a1-bb10-8a313684e71a
{"states": ["s0", "s1"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}]}
3
{"a":{"s0":"s1","s1":"s1"}}
Given the following FSM: a s0 s1 s1 s1 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: aaaaaaaaaaaaaaaa?
s1
16
20a679fe-9651-4848-9b94-32cf07e34815
2955a839-e81f-49a1-bb10-8a313684e71a
{"states": ["s0", "s1"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}]}
3
{"a":{"s0":"s1","s1":"s1"}}
Given the following FSM: a s0 s1 s1 s1 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: aaaaaaaaaaaaaaaaa?
s1
17
a7617638-dfe0-44f2-b9eb-26c70ec4e814
2955a839-e81f-49a1-bb10-8a313684e71a
{"states": ["s0", "s1"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}]}
3
{"a":{"s0":"s1","s1":"s1"}}
Given the following FSM: a s0 s1 s1 s1 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: aaaaaaaaaaaaaaaaaa?
s1
18
6b4251e8-22b9-4eb3-ab5a-50bf3d0de93b
2955a839-e81f-49a1-bb10-8a313684e71a
{"states": ["s0", "s1"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}]}
3
{"a":{"s0":"s1","s1":"s1"}}
Given the following FSM: a s0 s1 s1 s1 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: aaaaaaaaaaaaaaaaaaa?
s1
19
62c8869a-81e4-4562-ade8-12fe4da05b48
2955a839-e81f-49a1-bb10-8a313684e71a
{"states": ["s0", "s1"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}]}
3
{"a":{"s0":"s1","s1":"s1"}}
Given the following FSM: a s0 s1 s1 s1 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: aaaaaaaaaaaaaaaaaaaa?
s1
20
76ed9524-faf3-4882-99c0-ba7123948d27
2955a839-e81f-49a1-bb10-8a313684e71a
{"states": ["s0", "s1"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}]}
3
{"a":{"s0":"s1","s1":"s1"}}
Given the following FSM: a s0 s1 s1 s1 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: aaaaaaaaaaaaaaaaaaaaa?
s1
21
a501d55f-f6e2-46ee-bc00-34bf5ed3940e
2955a839-e81f-49a1-bb10-8a313684e71a
{"states": ["s0", "s1"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}]}
3
{"a":{"s0":"s1","s1":"s1"}}
Given the following FSM: a s0 s1 s1 s1 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: aaaaaaaaaaaaaaaaaaaaaa?
s1
22
1b9df0a2-9b65-451d-91f6-ea5f79fa7a4f
2955a839-e81f-49a1-bb10-8a313684e71a
{"states": ["s0", "s1"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}]}
3
{"a":{"s0":"s1","s1":"s1"}}
Given the following FSM: a s0 s1 s1 s1 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: aaaaaaaaaaaaaaaaaaaaaaa?
s1
23
8b52be7d-157c-4269-924f-9fe3d49c10d5
2955a839-e81f-49a1-bb10-8a313684e71a
{"states": ["s0", "s1"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}]}
3
{"a":{"s0":"s1","s1":"s1"}}
Given the following FSM: a s0 s1 s1 s1 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: aaaaaaaaaaaaaaaaaaaaaaaa?
s1
24
74fbb388-2bea-46b8-ba6c-5d9b37f46c62
2955a839-e81f-49a1-bb10-8a313684e71a
{"states": ["s0", "s1"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}]}
3
{"a":{"s0":"s1","s1":"s1"}}
Given the following FSM: a s0 s1 s1 s1 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: aaaaaaaaaaaaaaaaaaaaaaaaa?
s1
25
831ab7cd-744e-4a08-a965-3199c3660526
2955a839-e81f-49a1-bb10-8a313684e71a
{"states": ["s0", "s1"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}]}
3
{"a":{"s0":"s1","s1":"s1"}}
Given the following FSM: a s0 s1 s1 s1 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: aaaaaaaaaaaaaaaaaaaaaaaaaa?
s1
26
ba7239f0-bc27-44a3-a9e7-6dbb56035950
2955a839-e81f-49a1-bb10-8a313684e71a
{"states": ["s0", "s1"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}]}
3
{"a":{"s0":"s1","s1":"s1"}}
Given the following FSM: a s0 s1 s1 s1 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: aaaaaaaaaaaaaaaaaaaaaaaaaaa?
s1
27
618f1a29-09f4-44a7-98ab-fb4f6b21b0f2
2955a839-e81f-49a1-bb10-8a313684e71a
{"states": ["s0", "s1"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}]}
3
{"a":{"s0":"s1","s1":"s1"}}
Given the following FSM: a s0 s1 s1 s1 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: aaaaaaaaaaaaaaaaaaaaaaaaaaaa?
s1
28
02107792-f5e4-4f59-ab64-71271f33dde5
2955a839-e81f-49a1-bb10-8a313684e71a
{"states": ["s0", "s1"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}]}
3
{"a":{"s0":"s1","s1":"s1"}}
Given the following FSM: a s0 s1 s1 s1 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: aaaaaaaaaaaaaaaaaaaaaaaaaaaaa?
s1
29
9d048ba9-c451-41ed-a714-f13e9e580463
ac972046-fcdd-422b-9cd5-d454387b238d
{"states": ["s0"], "alphabets": "abcde", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}]}
2
{"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"}}
Given the following FSM: a b c d e s0 s0 s0 s0 s0 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: c?
s0
1
5ece2473-aad7-4f9a-84c0-d6260a4a66d4
ac972046-fcdd-422b-9cd5-d454387b238d
{"states": ["s0"], "alphabets": "abcde", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}]}
2
{"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"}}
Given the following FSM: a b c d e s0 s0 s0 s0 s0 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: cb?
s0
2
846a9907-9673-49a8-8c9b-e744cda3c405
ac972046-fcdd-422b-9cd5-d454387b238d
{"states": ["s0"], "alphabets": "abcde", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}]}
2
{"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"}}
Given the following FSM: a b c d e s0 s0 s0 s0 s0 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: cbb?
s0
3
32f76e1b-ccb4-4744-b34a-d51ff3dadac8
ac972046-fcdd-422b-9cd5-d454387b238d
{"states": ["s0"], "alphabets": "abcde", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}]}
2
{"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"}}
Given the following FSM: a b c d e s0 s0 s0 s0 s0 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: cbbe?
s0
4
88570f94-f0b0-4d1f-8a6d-7e830796db39
ac972046-fcdd-422b-9cd5-d454387b238d
{"states": ["s0"], "alphabets": "abcde", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}]}
2
{"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"}}
Given the following FSM: a b c d e s0 s0 s0 s0 s0 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: cbbed?
s0
5
78517d04-d976-4891-ba7c-7e2942a71713
ac972046-fcdd-422b-9cd5-d454387b238d
{"states": ["s0"], "alphabets": "abcde", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}]}
2
{"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"}}
Given the following FSM: a b c d e s0 s0 s0 s0 s0 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: cbbede?
s0
6
ab343ea2-4a3c-4b31-99b5-df0b99abe8ff
ac972046-fcdd-422b-9cd5-d454387b238d
{"states": ["s0"], "alphabets": "abcde", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}]}
2
{"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"}}
Given the following FSM: a b c d e s0 s0 s0 s0 s0 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: cbbedee?
s0
7
45e769c0-d9dd-4705-a66c-83985b69a506
ac972046-fcdd-422b-9cd5-d454387b238d
{"states": ["s0"], "alphabets": "abcde", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}]}
2
{"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"}}
Given the following FSM: a b c d e s0 s0 s0 s0 s0 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: cbbedeed?
s0
8
f6573b6b-88a5-49ef-803f-4abcb4302505
ac972046-fcdd-422b-9cd5-d454387b238d
{"states": ["s0"], "alphabets": "abcde", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}]}
2
{"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"}}
Given the following FSM: a b c d e s0 s0 s0 s0 s0 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: cbbedeedc?
s0
9
52a793d0-9854-47e8-af6e-e1bee8e2b965
ac972046-fcdd-422b-9cd5-d454387b238d
{"states": ["s0"], "alphabets": "abcde", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}]}
2
{"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"}}
Given the following FSM: a b c d e s0 s0 s0 s0 s0 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: cbbedeedcc?
s0
10
af28e1b1-a301-416b-bf2a-ae02a421ecf7
ac972046-fcdd-422b-9cd5-d454387b238d
{"states": ["s0"], "alphabets": "abcde", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}]}
2
{"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"}}
Given the following FSM: a b c d e s0 s0 s0 s0 s0 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: cbbedeedccc?
s0
11
c4add6b2-3e8b-45f3-8aa7-697af10dfe14
ac972046-fcdd-422b-9cd5-d454387b238d
{"states": ["s0"], "alphabets": "abcde", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}]}
2
{"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"}}
Given the following FSM: a b c d e s0 s0 s0 s0 s0 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: cbbedeedcccc?
s0
12
32c9477f-58e2-4766-8001-d4d9eadf30fc
ac972046-fcdd-422b-9cd5-d454387b238d
{"states": ["s0"], "alphabets": "abcde", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}]}
2
{"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"}}
Given the following FSM: a b c d e s0 s0 s0 s0 s0 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: cbbedeedcccce?
s0
13
bcb80511-abfa-4c1c-881a-514eaec6ed9a
ac972046-fcdd-422b-9cd5-d454387b238d
{"states": ["s0"], "alphabets": "abcde", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}]}
2
{"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"}}
Given the following FSM: a b c d e s0 s0 s0 s0 s0 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: cbbedeedccccea?
s0
14
23b0f5a2-a671-4f4d-a185-1b4f588c10dc
ac972046-fcdd-422b-9cd5-d454387b238d
{"states": ["s0"], "alphabets": "abcde", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}]}
2
{"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"}}
Given the following FSM: a b c d e s0 s0 s0 s0 s0 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: cbbedeedccccead?
s0
15
c3dd219f-18e7-43db-b454-7ea303b1005e
ac972046-fcdd-422b-9cd5-d454387b238d
{"states": ["s0"], "alphabets": "abcde", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}]}
2
{"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"}}
Given the following FSM: a b c d e s0 s0 s0 s0 s0 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: cbbedeedcccceadb?
s0
16
ba5beeb1-4514-4893-bfe5-1d4f76e0c971
ac972046-fcdd-422b-9cd5-d454387b238d
{"states": ["s0"], "alphabets": "abcde", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}]}
2
{"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"}}
Given the following FSM: a b c d e s0 s0 s0 s0 s0 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: cbbedeedcccceadbd?
s0
17
f2a7afcc-167c-48dc-a47c-6183686b8700
ac972046-fcdd-422b-9cd5-d454387b238d
{"states": ["s0"], "alphabets": "abcde", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}]}
2
{"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"}}
Given the following FSM: a b c d e s0 s0 s0 s0 s0 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: cbbedeedcccceadbde?
s0
18
ab1a9bfe-9c89-4c53-a18d-8d7364b11fa9
ac972046-fcdd-422b-9cd5-d454387b238d
{"states": ["s0"], "alphabets": "abcde", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}]}
2
{"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"}}
Given the following FSM: a b c d e s0 s0 s0 s0 s0 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: cbbedeedcccceadbdec?
s0
19
ea5e7ee2-4bec-4f8c-8e54-9a71017a8b10
ac972046-fcdd-422b-9cd5-d454387b238d
{"states": ["s0"], "alphabets": "abcde", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}]}
2
{"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"}}
Given the following FSM: a b c d e s0 s0 s0 s0 s0 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: cbbedeedcccceadbdece?
s0
20
fb165eb3-c5ad-41b7-a667-bcbd163299db
ac972046-fcdd-422b-9cd5-d454387b238d
{"states": ["s0"], "alphabets": "abcde", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}]}
2
{"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"}}
Given the following FSM: a b c d e s0 s0 s0 s0 s0 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: cbbedeedcccceadbdecea?
s0
21
56f47189-846f-4f4f-bf51-4d92a34cc950
ac972046-fcdd-422b-9cd5-d454387b238d
{"states": ["s0"], "alphabets": "abcde", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}]}
2
{"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"}}
Given the following FSM: a b c d e s0 s0 s0 s0 s0 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: cbbedeedcccceadbdeceae?
s0
22
7ef56b27-d9ea-48b1-b353-c6e56038fcff
ac972046-fcdd-422b-9cd5-d454387b238d
{"states": ["s0"], "alphabets": "abcde", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}]}
2
{"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"}}
Given the following FSM: a b c d e s0 s0 s0 s0 s0 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: cbbedeedcccceadbdeceaec?
s0
23
63b496fd-bcab-41e6-9d85-26aae32fcada
ac972046-fcdd-422b-9cd5-d454387b238d
{"states": ["s0"], "alphabets": "abcde", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}]}
2
{"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"}}
Given the following FSM: a b c d e s0 s0 s0 s0 s0 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: cbbedeedcccceadbdeceaece?
s0
24
39b9dfce-eb25-4703-ba5d-6259715b90f2
ac972046-fcdd-422b-9cd5-d454387b238d
{"states": ["s0"], "alphabets": "abcde", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}]}
2
{"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"}}
Given the following FSM: a b c d e s0 s0 s0 s0 s0 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: cbbedeedcccceadbdeceaecec?
s0
25
36c70417-ecd7-45a0-955a-65741a5e21d2
ac972046-fcdd-422b-9cd5-d454387b238d
{"states": ["s0"], "alphabets": "abcde", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}]}
2
{"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"}}
Given the following FSM: a b c d e s0 s0 s0 s0 s0 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: cbbedeedcccceadbdeceaececb?
s0
26
5df7c003-8774-463f-898c-790a3c8a1165
ac972046-fcdd-422b-9cd5-d454387b238d
{"states": ["s0"], "alphabets": "abcde", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}]}
2
{"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"}}
Given the following FSM: a b c d e s0 s0 s0 s0 s0 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: cbbedeedcccceadbdeceaececbc?
s0
27
c0100609-33d7-4c75-b55d-18c74bdde744
ac972046-fcdd-422b-9cd5-d454387b238d
{"states": ["s0"], "alphabets": "abcde", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}]}
2
{"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"}}
Given the following FSM: a b c d e s0 s0 s0 s0 s0 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: cbbedeedcccceadbdeceaececbcd?
s0
28
afe7d444-bd06-4c2b-a7f0-ce55deaf6aac
ac972046-fcdd-422b-9cd5-d454387b238d
{"states": ["s0"], "alphabets": "abcde", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}]}
2
{"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"}}
Given the following FSM: a b c d e s0 s0 s0 s0 s0 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: cbbedeedcccceadbdeceaececbcdc?
s0
29
96546ef8-b703-406e-992c-490ebb63af17
1b89b63c-9f33-4cb8-bf08-d96db1c5cd6e
{"states": ["s0", "s1", "s2", "s3"], "alphabets": "abcde", "accepting_states": ["s3", "s1", "s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "e", "toStates": ["s0"]}]}
2
{"a":{"s0":"s1","s1":"s3","s2":"s3","s3":"s0"},"b":{"s0":"s2","s1":"s3","s2":"s0","s3":"s1"},"c":{"s0":"s3","s1":"s0","s2":"s3","s3":"s0"},"d":{"s0":"s0","s1":"s0","s2":"s3","s3":"s0"},"e":{"s0":"s3","s1":"s1","s2":"s1","s3":"s0"}}
Given the following FSM: a b c d e s0 s1 s2 s3 s0 s3 s1 s3 s3 s0 s0 s1 s2 s3 s0 s3 s3 s1 s3 s0 s1 s0 s0 s0 Initial state: s0, and Accepting states: s3, s1, s2 What will be the state after reading the following input: e?
s3
1
0d2c91c8-6af9-48c3-96f0-5a892ed65302
1b89b63c-9f33-4cb8-bf08-d96db1c5cd6e
{"states": ["s0", "s1", "s2", "s3"], "alphabets": "abcde", "accepting_states": ["s3", "s1", "s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "e", "toStates": ["s0"]}]}
2
{"a":{"s0":"s1","s1":"s3","s2":"s3","s3":"s0"},"b":{"s0":"s2","s1":"s3","s2":"s0","s3":"s1"},"c":{"s0":"s3","s1":"s0","s2":"s3","s3":"s0"},"d":{"s0":"s0","s1":"s0","s2":"s3","s3":"s0"},"e":{"s0":"s3","s1":"s1","s2":"s1","s3":"s0"}}
Given the following FSM: a b c d e s0 s1 s2 s3 s0 s3 s1 s3 s3 s0 s0 s1 s2 s3 s0 s3 s3 s1 s3 s0 s1 s0 s0 s0 Initial state: s0, and Accepting states: s3, s1, s2 What will be the state after reading the following input: ec?
s0
2
f5219775-907d-49b2-b6b3-c97d94e55420
1b89b63c-9f33-4cb8-bf08-d96db1c5cd6e
{"states": ["s0", "s1", "s2", "s3"], "alphabets": "abcde", "accepting_states": ["s3", "s1", "s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "e", "toStates": ["s0"]}]}
2
{"a":{"s0":"s1","s1":"s3","s2":"s3","s3":"s0"},"b":{"s0":"s2","s1":"s3","s2":"s0","s3":"s1"},"c":{"s0":"s3","s1":"s0","s2":"s3","s3":"s0"},"d":{"s0":"s0","s1":"s0","s2":"s3","s3":"s0"},"e":{"s0":"s3","s1":"s1","s2":"s1","s3":"s0"}}
Given the following FSM: a b c d e s0 s1 s2 s3 s0 s3 s1 s3 s3 s0 s0 s1 s2 s3 s0 s3 s3 s1 s3 s0 s1 s0 s0 s0 Initial state: s0, and Accepting states: s3, s1, s2 What will be the state after reading the following input: ecd?
s0
3
fab1349a-d528-4823-9f61-00a750005825
1b89b63c-9f33-4cb8-bf08-d96db1c5cd6e
{"states": ["s0", "s1", "s2", "s3"], "alphabets": "abcde", "accepting_states": ["s3", "s1", "s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "e", "toStates": ["s0"]}]}
2
{"a":{"s0":"s1","s1":"s3","s2":"s3","s3":"s0"},"b":{"s0":"s2","s1":"s3","s2":"s0","s3":"s1"},"c":{"s0":"s3","s1":"s0","s2":"s3","s3":"s0"},"d":{"s0":"s0","s1":"s0","s2":"s3","s3":"s0"},"e":{"s0":"s3","s1":"s1","s2":"s1","s3":"s0"}}
Given the following FSM: a b c d e s0 s1 s2 s3 s0 s3 s1 s3 s3 s0 s0 s1 s2 s3 s0 s3 s3 s1 s3 s0 s1 s0 s0 s0 Initial state: s0, and Accepting states: s3, s1, s2 What will be the state after reading the following input: ecdd?
s0
4
4d206f40-678d-4b29-8adc-b527ebb3e603
1b89b63c-9f33-4cb8-bf08-d96db1c5cd6e
{"states": ["s0", "s1", "s2", "s3"], "alphabets": "abcde", "accepting_states": ["s3", "s1", "s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "e", "toStates": ["s0"]}]}
2
{"a":{"s0":"s1","s1":"s3","s2":"s3","s3":"s0"},"b":{"s0":"s2","s1":"s3","s2":"s0","s3":"s1"},"c":{"s0":"s3","s1":"s0","s2":"s3","s3":"s0"},"d":{"s0":"s0","s1":"s0","s2":"s3","s3":"s0"},"e":{"s0":"s3","s1":"s1","s2":"s1","s3":"s0"}}
Given the following FSM: a b c d e s0 s1 s2 s3 s0 s3 s1 s3 s3 s0 s0 s1 s2 s3 s0 s3 s3 s1 s3 s0 s1 s0 s0 s0 Initial state: s0, and Accepting states: s3, s1, s2 What will be the state after reading the following input: ecddd?
s0
5
3fe83607-ae7a-483a-8685-05cad6708368
1b89b63c-9f33-4cb8-bf08-d96db1c5cd6e
{"states": ["s0", "s1", "s2", "s3"], "alphabets": "abcde", "accepting_states": ["s3", "s1", "s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "e", "toStates": ["s0"]}]}
2
{"a":{"s0":"s1","s1":"s3","s2":"s3","s3":"s0"},"b":{"s0":"s2","s1":"s3","s2":"s0","s3":"s1"},"c":{"s0":"s3","s1":"s0","s2":"s3","s3":"s0"},"d":{"s0":"s0","s1":"s0","s2":"s3","s3":"s0"},"e":{"s0":"s3","s1":"s1","s2":"s1","s3":"s0"}}
Given the following FSM: a b c d e s0 s1 s2 s3 s0 s3 s1 s3 s3 s0 s0 s1 s2 s3 s0 s3 s3 s1 s3 s0 s1 s0 s0 s0 Initial state: s0, and Accepting states: s3, s1, s2 What will be the state after reading the following input: ecddde?
s3
6
1a5f3499-dfdb-4add-bb07-765aec1fb383
1b89b63c-9f33-4cb8-bf08-d96db1c5cd6e
{"states": ["s0", "s1", "s2", "s3"], "alphabets": "abcde", "accepting_states": ["s3", "s1", "s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "e", "toStates": ["s0"]}]}
2
{"a":{"s0":"s1","s1":"s3","s2":"s3","s3":"s0"},"b":{"s0":"s2","s1":"s3","s2":"s0","s3":"s1"},"c":{"s0":"s3","s1":"s0","s2":"s3","s3":"s0"},"d":{"s0":"s0","s1":"s0","s2":"s3","s3":"s0"},"e":{"s0":"s3","s1":"s1","s2":"s1","s3":"s0"}}
Given the following FSM: a b c d e s0 s1 s2 s3 s0 s3 s1 s3 s3 s0 s0 s1 s2 s3 s0 s3 s3 s1 s3 s0 s1 s0 s0 s0 Initial state: s0, and Accepting states: s3, s1, s2 What will be the state after reading the following input: ecdddec?
s0
7
5a1543a9-640c-41da-90b9-d2f4624db867
1b89b63c-9f33-4cb8-bf08-d96db1c5cd6e
{"states": ["s0", "s1", "s2", "s3"], "alphabets": "abcde", "accepting_states": ["s3", "s1", "s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "e", "toStates": ["s0"]}]}
2
{"a":{"s0":"s1","s1":"s3","s2":"s3","s3":"s0"},"b":{"s0":"s2","s1":"s3","s2":"s0","s3":"s1"},"c":{"s0":"s3","s1":"s0","s2":"s3","s3":"s0"},"d":{"s0":"s0","s1":"s0","s2":"s3","s3":"s0"},"e":{"s0":"s3","s1":"s1","s2":"s1","s3":"s0"}}
Given the following FSM: a b c d e s0 s1 s2 s3 s0 s3 s1 s3 s3 s0 s0 s1 s2 s3 s0 s3 s3 s1 s3 s0 s1 s0 s0 s0 Initial state: s0, and Accepting states: s3, s1, s2 What will be the state after reading the following input: ecdddecd?
s0
8
dd03b5db-71f1-4d0b-8a50-bfa29717c06e
1b89b63c-9f33-4cb8-bf08-d96db1c5cd6e
{"states": ["s0", "s1", "s2", "s3"], "alphabets": "abcde", "accepting_states": ["s3", "s1", "s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "e", "toStates": ["s0"]}]}
2
{"a":{"s0":"s1","s1":"s3","s2":"s3","s3":"s0"},"b":{"s0":"s2","s1":"s3","s2":"s0","s3":"s1"},"c":{"s0":"s3","s1":"s0","s2":"s3","s3":"s0"},"d":{"s0":"s0","s1":"s0","s2":"s3","s3":"s0"},"e":{"s0":"s3","s1":"s1","s2":"s1","s3":"s0"}}
Given the following FSM: a b c d e s0 s1 s2 s3 s0 s3 s1 s3 s3 s0 s0 s1 s2 s3 s0 s3 s3 s1 s3 s0 s1 s0 s0 s0 Initial state: s0, and Accepting states: s3, s1, s2 What will be the state after reading the following input: ecdddecdc?
s3
9
396c9928-8bd5-469d-bb5f-b54f5baff38f
1b89b63c-9f33-4cb8-bf08-d96db1c5cd6e
{"states": ["s0", "s1", "s2", "s3"], "alphabets": "abcde", "accepting_states": ["s3", "s1", "s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "e", "toStates": ["s0"]}]}
2
{"a":{"s0":"s1","s1":"s3","s2":"s3","s3":"s0"},"b":{"s0":"s2","s1":"s3","s2":"s0","s3":"s1"},"c":{"s0":"s3","s1":"s0","s2":"s3","s3":"s0"},"d":{"s0":"s0","s1":"s0","s2":"s3","s3":"s0"},"e":{"s0":"s3","s1":"s1","s2":"s1","s3":"s0"}}
Given the following FSM: a b c d e s0 s1 s2 s3 s0 s3 s1 s3 s3 s0 s0 s1 s2 s3 s0 s3 s3 s1 s3 s0 s1 s0 s0 s0 Initial state: s0, and Accepting states: s3, s1, s2 What will be the state after reading the following input: ecdddecdcb?
s1
10
ac86af9b-f909-4130-8263-7494d9d5ca9e
1b89b63c-9f33-4cb8-bf08-d96db1c5cd6e
{"states": ["s0", "s1", "s2", "s3"], "alphabets": "abcde", "accepting_states": ["s3", "s1", "s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "e", "toStates": ["s0"]}]}
2
{"a":{"s0":"s1","s1":"s3","s2":"s3","s3":"s0"},"b":{"s0":"s2","s1":"s3","s2":"s0","s3":"s1"},"c":{"s0":"s3","s1":"s0","s2":"s3","s3":"s0"},"d":{"s0":"s0","s1":"s0","s2":"s3","s3":"s0"},"e":{"s0":"s3","s1":"s1","s2":"s1","s3":"s0"}}
Given the following FSM: a b c d e s0 s1 s2 s3 s0 s3 s1 s3 s3 s0 s0 s1 s2 s3 s0 s3 s3 s1 s3 s0 s1 s0 s0 s0 Initial state: s0, and Accepting states: s3, s1, s2 What will be the state after reading the following input: ecdddecdcbb?
s3
11
83a74f74-304a-4549-9cc4-0116e791203b
1b89b63c-9f33-4cb8-bf08-d96db1c5cd6e
{"states": ["s0", "s1", "s2", "s3"], "alphabets": "abcde", "accepting_states": ["s3", "s1", "s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "e", "toStates": ["s0"]}]}
2
{"a":{"s0":"s1","s1":"s3","s2":"s3","s3":"s0"},"b":{"s0":"s2","s1":"s3","s2":"s0","s3":"s1"},"c":{"s0":"s3","s1":"s0","s2":"s3","s3":"s0"},"d":{"s0":"s0","s1":"s0","s2":"s3","s3":"s0"},"e":{"s0":"s3","s1":"s1","s2":"s1","s3":"s0"}}
Given the following FSM: a b c d e s0 s1 s2 s3 s0 s3 s1 s3 s3 s0 s0 s1 s2 s3 s0 s3 s3 s1 s3 s0 s1 s0 s0 s0 Initial state: s0, and Accepting states: s3, s1, s2 What will be the state after reading the following input: ecdddecdcbbc?
s0
12
52d95a1f-6f94-4860-8727-9126953dd749
1b89b63c-9f33-4cb8-bf08-d96db1c5cd6e
{"states": ["s0", "s1", "s2", "s3"], "alphabets": "abcde", "accepting_states": ["s3", "s1", "s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "e", "toStates": ["s0"]}]}
2
{"a":{"s0":"s1","s1":"s3","s2":"s3","s3":"s0"},"b":{"s0":"s2","s1":"s3","s2":"s0","s3":"s1"},"c":{"s0":"s3","s1":"s0","s2":"s3","s3":"s0"},"d":{"s0":"s0","s1":"s0","s2":"s3","s3":"s0"},"e":{"s0":"s3","s1":"s1","s2":"s1","s3":"s0"}}
Given the following FSM: a b c d e s0 s1 s2 s3 s0 s3 s1 s3 s3 s0 s0 s1 s2 s3 s0 s3 s3 s1 s3 s0 s1 s0 s0 s0 Initial state: s0, and Accepting states: s3, s1, s2 What will be the state after reading the following input: ecdddecdcbbce?
s3
13
9381efc2-200a-4f52-a39b-1a5d150fdba2
1b89b63c-9f33-4cb8-bf08-d96db1c5cd6e
{"states": ["s0", "s1", "s2", "s3"], "alphabets": "abcde", "accepting_states": ["s3", "s1", "s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "e", "toStates": ["s0"]}]}
2
{"a":{"s0":"s1","s1":"s3","s2":"s3","s3":"s0"},"b":{"s0":"s2","s1":"s3","s2":"s0","s3":"s1"},"c":{"s0":"s3","s1":"s0","s2":"s3","s3":"s0"},"d":{"s0":"s0","s1":"s0","s2":"s3","s3":"s0"},"e":{"s0":"s3","s1":"s1","s2":"s1","s3":"s0"}}
Given the following FSM: a b c d e s0 s1 s2 s3 s0 s3 s1 s3 s3 s0 s0 s1 s2 s3 s0 s3 s3 s1 s3 s0 s1 s0 s0 s0 Initial state: s0, and Accepting states: s3, s1, s2 What will be the state after reading the following input: ecdddecdcbbcec?
s0
14
31b1169a-f9a1-48ea-9b87-2d264ae5cbed
1b89b63c-9f33-4cb8-bf08-d96db1c5cd6e
{"states": ["s0", "s1", "s2", "s3"], "alphabets": "abcde", "accepting_states": ["s3", "s1", "s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "e", "toStates": ["s0"]}]}
2
{"a":{"s0":"s1","s1":"s3","s2":"s3","s3":"s0"},"b":{"s0":"s2","s1":"s3","s2":"s0","s3":"s1"},"c":{"s0":"s3","s1":"s0","s2":"s3","s3":"s0"},"d":{"s0":"s0","s1":"s0","s2":"s3","s3":"s0"},"e":{"s0":"s3","s1":"s1","s2":"s1","s3":"s0"}}
Given the following FSM: a b c d e s0 s1 s2 s3 s0 s3 s1 s3 s3 s0 s0 s1 s2 s3 s0 s3 s3 s1 s3 s0 s1 s0 s0 s0 Initial state: s0, and Accepting states: s3, s1, s2 What will be the state after reading the following input: ecdddecdcbbcecb?
s2
15
3b1c3aff-416c-4b73-8c59-d90c5051711e
1b89b63c-9f33-4cb8-bf08-d96db1c5cd6e
{"states": ["s0", "s1", "s2", "s3"], "alphabets": "abcde", "accepting_states": ["s3", "s1", "s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "e", "toStates": ["s0"]}]}
2
{"a":{"s0":"s1","s1":"s3","s2":"s3","s3":"s0"},"b":{"s0":"s2","s1":"s3","s2":"s0","s3":"s1"},"c":{"s0":"s3","s1":"s0","s2":"s3","s3":"s0"},"d":{"s0":"s0","s1":"s0","s2":"s3","s3":"s0"},"e":{"s0":"s3","s1":"s1","s2":"s1","s3":"s0"}}
Given the following FSM: a b c d e s0 s1 s2 s3 s0 s3 s1 s3 s3 s0 s0 s1 s2 s3 s0 s3 s3 s1 s3 s0 s1 s0 s0 s0 Initial state: s0, and Accepting states: s3, s1, s2 What will be the state after reading the following input: ecdddecdcbbcecba?
s3
16
c348b189-fd04-4db1-85e7-855ddca44a0b
1b89b63c-9f33-4cb8-bf08-d96db1c5cd6e
{"states": ["s0", "s1", "s2", "s3"], "alphabets": "abcde", "accepting_states": ["s3", "s1", "s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "e", "toStates": ["s0"]}]}
2
{"a":{"s0":"s1","s1":"s3","s2":"s3","s3":"s0"},"b":{"s0":"s2","s1":"s3","s2":"s0","s3":"s1"},"c":{"s0":"s3","s1":"s0","s2":"s3","s3":"s0"},"d":{"s0":"s0","s1":"s0","s2":"s3","s3":"s0"},"e":{"s0":"s3","s1":"s1","s2":"s1","s3":"s0"}}
Given the following FSM: a b c d e s0 s1 s2 s3 s0 s3 s1 s3 s3 s0 s0 s1 s2 s3 s0 s3 s3 s1 s3 s0 s1 s0 s0 s0 Initial state: s0, and Accepting states: s3, s1, s2 What will be the state after reading the following input: ecdddecdcbbcecbac?
s0
17
d012896b-f562-4340-b306-c9ca9baf1038
1b89b63c-9f33-4cb8-bf08-d96db1c5cd6e
{"states": ["s0", "s1", "s2", "s3"], "alphabets": "abcde", "accepting_states": ["s3", "s1", "s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "e", "toStates": ["s0"]}]}
2
{"a":{"s0":"s1","s1":"s3","s2":"s3","s3":"s0"},"b":{"s0":"s2","s1":"s3","s2":"s0","s3":"s1"},"c":{"s0":"s3","s1":"s0","s2":"s3","s3":"s0"},"d":{"s0":"s0","s1":"s0","s2":"s3","s3":"s0"},"e":{"s0":"s3","s1":"s1","s2":"s1","s3":"s0"}}
Given the following FSM: a b c d e s0 s1 s2 s3 s0 s3 s1 s3 s3 s0 s0 s1 s2 s3 s0 s3 s3 s1 s3 s0 s1 s0 s0 s0 Initial state: s0, and Accepting states: s3, s1, s2 What will be the state after reading the following input: ecdddecdcbbcecbacd?
s0
18
3c500562-b06c-4480-94f8-cdb035eeacd1
1b89b63c-9f33-4cb8-bf08-d96db1c5cd6e
{"states": ["s0", "s1", "s2", "s3"], "alphabets": "abcde", "accepting_states": ["s3", "s1", "s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "e", "toStates": ["s0"]}]}
2
{"a":{"s0":"s1","s1":"s3","s2":"s3","s3":"s0"},"b":{"s0":"s2","s1":"s3","s2":"s0","s3":"s1"},"c":{"s0":"s3","s1":"s0","s2":"s3","s3":"s0"},"d":{"s0":"s0","s1":"s0","s2":"s3","s3":"s0"},"e":{"s0":"s3","s1":"s1","s2":"s1","s3":"s0"}}
Given the following FSM: a b c d e s0 s1 s2 s3 s0 s3 s1 s3 s3 s0 s0 s1 s2 s3 s0 s3 s3 s1 s3 s0 s1 s0 s0 s0 Initial state: s0, and Accepting states: s3, s1, s2 What will be the state after reading the following input: ecdddecdcbbcecbacde?
s3
19
f193b850-b766-4b62-914d-d4964d7428c8
1b89b63c-9f33-4cb8-bf08-d96db1c5cd6e
{"states": ["s0", "s1", "s2", "s3"], "alphabets": "abcde", "accepting_states": ["s3", "s1", "s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "e", "toStates": ["s0"]}]}
2
{"a":{"s0":"s1","s1":"s3","s2":"s3","s3":"s0"},"b":{"s0":"s2","s1":"s3","s2":"s0","s3":"s1"},"c":{"s0":"s3","s1":"s0","s2":"s3","s3":"s0"},"d":{"s0":"s0","s1":"s0","s2":"s3","s3":"s0"},"e":{"s0":"s3","s1":"s1","s2":"s1","s3":"s0"}}
Given the following FSM: a b c d e s0 s1 s2 s3 s0 s3 s1 s3 s3 s0 s0 s1 s2 s3 s0 s3 s3 s1 s3 s0 s1 s0 s0 s0 Initial state: s0, and Accepting states: s3, s1, s2 What will be the state after reading the following input: ecdddecdcbbcecbacdeb?
s1
20
8c3d9de1-ff77-41d0-8b3b-3dbba3009158
1b89b63c-9f33-4cb8-bf08-d96db1c5cd6e
{"states": ["s0", "s1", "s2", "s3"], "alphabets": "abcde", "accepting_states": ["s3", "s1", "s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "e", "toStates": ["s0"]}]}
2
{"a":{"s0":"s1","s1":"s3","s2":"s3","s3":"s0"},"b":{"s0":"s2","s1":"s3","s2":"s0","s3":"s1"},"c":{"s0":"s3","s1":"s0","s2":"s3","s3":"s0"},"d":{"s0":"s0","s1":"s0","s2":"s3","s3":"s0"},"e":{"s0":"s3","s1":"s1","s2":"s1","s3":"s0"}}
Given the following FSM: a b c d e s0 s1 s2 s3 s0 s3 s1 s3 s3 s0 s0 s1 s2 s3 s0 s3 s3 s1 s3 s0 s1 s0 s0 s0 Initial state: s0, and Accepting states: s3, s1, s2 What will be the state after reading the following input: ecdddecdcbbcecbacdebe?
s1
21
a96324b4-bcc8-42a0-8616-5bcf946789ac
1b89b63c-9f33-4cb8-bf08-d96db1c5cd6e
{"states": ["s0", "s1", "s2", "s3"], "alphabets": "abcde", "accepting_states": ["s3", "s1", "s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "e", "toStates": ["s0"]}]}
2
{"a":{"s0":"s1","s1":"s3","s2":"s3","s3":"s0"},"b":{"s0":"s2","s1":"s3","s2":"s0","s3":"s1"},"c":{"s0":"s3","s1":"s0","s2":"s3","s3":"s0"},"d":{"s0":"s0","s1":"s0","s2":"s3","s3":"s0"},"e":{"s0":"s3","s1":"s1","s2":"s1","s3":"s0"}}
Given the following FSM: a b c d e s0 s1 s2 s3 s0 s3 s1 s3 s3 s0 s0 s1 s2 s3 s0 s3 s3 s1 s3 s0 s1 s0 s0 s0 Initial state: s0, and Accepting states: s3, s1, s2 What will be the state after reading the following input: ecdddecdcbbcecbacdebec?
s0
22
279ce9bd-0780-4e91-8898-32fd2e211644
1b89b63c-9f33-4cb8-bf08-d96db1c5cd6e
{"states": ["s0", "s1", "s2", "s3"], "alphabets": "abcde", "accepting_states": ["s3", "s1", "s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "e", "toStates": ["s0"]}]}
2
{"a":{"s0":"s1","s1":"s3","s2":"s3","s3":"s0"},"b":{"s0":"s2","s1":"s3","s2":"s0","s3":"s1"},"c":{"s0":"s3","s1":"s0","s2":"s3","s3":"s0"},"d":{"s0":"s0","s1":"s0","s2":"s3","s3":"s0"},"e":{"s0":"s3","s1":"s1","s2":"s1","s3":"s0"}}
Given the following FSM: a b c d e s0 s1 s2 s3 s0 s3 s1 s3 s3 s0 s0 s1 s2 s3 s0 s3 s3 s1 s3 s0 s1 s0 s0 s0 Initial state: s0, and Accepting states: s3, s1, s2 What will be the state after reading the following input: ecdddecdcbbcecbacdebeca?
s1
23
eb2c691a-e9c6-4bbb-a1a8-702f0f50995e
1b89b63c-9f33-4cb8-bf08-d96db1c5cd6e
{"states": ["s0", "s1", "s2", "s3"], "alphabets": "abcde", "accepting_states": ["s3", "s1", "s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "e", "toStates": ["s0"]}]}
2
{"a":{"s0":"s1","s1":"s3","s2":"s3","s3":"s0"},"b":{"s0":"s2","s1":"s3","s2":"s0","s3":"s1"},"c":{"s0":"s3","s1":"s0","s2":"s3","s3":"s0"},"d":{"s0":"s0","s1":"s0","s2":"s3","s3":"s0"},"e":{"s0":"s3","s1":"s1","s2":"s1","s3":"s0"}}
Given the following FSM: a b c d e s0 s1 s2 s3 s0 s3 s1 s3 s3 s0 s0 s1 s2 s3 s0 s3 s3 s1 s3 s0 s1 s0 s0 s0 Initial state: s0, and Accepting states: s3, s1, s2 What will be the state after reading the following input: ecdddecdcbbcecbacdebecad?
s0
24
f0127119-da63-424d-bf9f-a04966cf62d2
1b89b63c-9f33-4cb8-bf08-d96db1c5cd6e
{"states": ["s0", "s1", "s2", "s3"], "alphabets": "abcde", "accepting_states": ["s3", "s1", "s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "e", "toStates": ["s0"]}]}
2
{"a":{"s0":"s1","s1":"s3","s2":"s3","s3":"s0"},"b":{"s0":"s2","s1":"s3","s2":"s0","s3":"s1"},"c":{"s0":"s3","s1":"s0","s2":"s3","s3":"s0"},"d":{"s0":"s0","s1":"s0","s2":"s3","s3":"s0"},"e":{"s0":"s3","s1":"s1","s2":"s1","s3":"s0"}}
Given the following FSM: a b c d e s0 s1 s2 s3 s0 s3 s1 s3 s3 s0 s0 s1 s2 s3 s0 s3 s3 s1 s3 s0 s1 s0 s0 s0 Initial state: s0, and Accepting states: s3, s1, s2 What will be the state after reading the following input: ecdddecdcbbcecbacdebecadd?
s0
25
2d066f36-8cad-489d-a489-17b7aed648eb
1b89b63c-9f33-4cb8-bf08-d96db1c5cd6e
{"states": ["s0", "s1", "s2", "s3"], "alphabets": "abcde", "accepting_states": ["s3", "s1", "s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "e", "toStates": ["s0"]}]}
2
{"a":{"s0":"s1","s1":"s3","s2":"s3","s3":"s0"},"b":{"s0":"s2","s1":"s3","s2":"s0","s3":"s1"},"c":{"s0":"s3","s1":"s0","s2":"s3","s3":"s0"},"d":{"s0":"s0","s1":"s0","s2":"s3","s3":"s0"},"e":{"s0":"s3","s1":"s1","s2":"s1","s3":"s0"}}
Given the following FSM: a b c d e s0 s1 s2 s3 s0 s3 s1 s3 s3 s0 s0 s1 s2 s3 s0 s3 s3 s1 s3 s0 s1 s0 s0 s0 Initial state: s0, and Accepting states: s3, s1, s2 What will be the state after reading the following input: ecdddecdcbbcecbacdebecaddc?
s3
26
629f6548-ea5f-4971-b651-24fa9978b407
1b89b63c-9f33-4cb8-bf08-d96db1c5cd6e
{"states": ["s0", "s1", "s2", "s3"], "alphabets": "abcde", "accepting_states": ["s3", "s1", "s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "e", "toStates": ["s0"]}]}
2
{"a":{"s0":"s1","s1":"s3","s2":"s3","s3":"s0"},"b":{"s0":"s2","s1":"s3","s2":"s0","s3":"s1"},"c":{"s0":"s3","s1":"s0","s2":"s3","s3":"s0"},"d":{"s0":"s0","s1":"s0","s2":"s3","s3":"s0"},"e":{"s0":"s3","s1":"s1","s2":"s1","s3":"s0"}}
Given the following FSM: a b c d e s0 s1 s2 s3 s0 s3 s1 s3 s3 s0 s0 s1 s2 s3 s0 s3 s3 s1 s3 s0 s1 s0 s0 s0 Initial state: s0, and Accepting states: s3, s1, s2 What will be the state after reading the following input: ecdddecdcbbcecbacdebecaddcc?
s0
27
a1fcd945-5884-4788-93f8-d16b9d1b6f05
1b89b63c-9f33-4cb8-bf08-d96db1c5cd6e
{"states": ["s0", "s1", "s2", "s3"], "alphabets": "abcde", "accepting_states": ["s3", "s1", "s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "e", "toStates": ["s0"]}]}
2
{"a":{"s0":"s1","s1":"s3","s2":"s3","s3":"s0"},"b":{"s0":"s2","s1":"s3","s2":"s0","s3":"s1"},"c":{"s0":"s3","s1":"s0","s2":"s3","s3":"s0"},"d":{"s0":"s0","s1":"s0","s2":"s3","s3":"s0"},"e":{"s0":"s3","s1":"s1","s2":"s1","s3":"s0"}}
Given the following FSM: a b c d e s0 s1 s2 s3 s0 s3 s1 s3 s3 s0 s0 s1 s2 s3 s0 s3 s3 s1 s3 s0 s1 s0 s0 s0 Initial state: s0, and Accepting states: s3, s1, s2 What will be the state after reading the following input: ecdddecdcbbcecbacdebecaddccb?
s2
28
a9fa9fa4-88fe-46c9-9a02-1b9678af4f39
1b89b63c-9f33-4cb8-bf08-d96db1c5cd6e
{"states": ["s0", "s1", "s2", "s3"], "alphabets": "abcde", "accepting_states": ["s3", "s1", "s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "e", "toStates": ["s0"]}]}
2
{"a":{"s0":"s1","s1":"s3","s2":"s3","s3":"s0"},"b":{"s0":"s2","s1":"s3","s2":"s0","s3":"s1"},"c":{"s0":"s3","s1":"s0","s2":"s3","s3":"s0"},"d":{"s0":"s0","s1":"s0","s2":"s3","s3":"s0"},"e":{"s0":"s3","s1":"s1","s2":"s1","s3":"s0"}}
Given the following FSM: a b c d e s0 s1 s2 s3 s0 s3 s1 s3 s3 s0 s0 s1 s2 s3 s0 s3 s3 s1 s3 s0 s1 s0 s0 s0 Initial state: s0, and Accepting states: s3, s1, s2 What will be the state after reading the following input: ecdddecdcbbcecbacdebecaddccbb?
s0
29
3960752e-2c45-4827-9765-aa2cb364a313
358e2d98-79d6-4577-abff-7382b5e0c00c
{"states": ["s0", "s1", "s3", "s4"], "alphabets": "abcdef", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s4"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "f", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "d", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "e", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "f", "toStates": ["s1"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s4", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s4", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s4", "symbol": "d", "toStates": ["s3"]}, {"fromState": "s4", "symbol": "e", "toStates": ["s4"]}, {"fromState": "s4", "symbol": "f", "toStates": ["s4"]}]}
3
{"a":{"s0":"s0","s1":"s1","s3":"s4","s4":"s0"},"b":{"s0":"s0","s1":"s1","s3":"s3","s4":"s3"},"c":{"s0":"s0","s1":"s0","s3":"s1","s4":"s1"},"d":{"s0":"s4","s1":"s0","s3":"s3","s4":"s3"},"e":{"s0":"s1","s1":"s3","s3":"s3","s4":"s4"},"f":{"s0":"s0","s1":"s0","s3":"s1","s4":"s4"}}
Given the following FSM: a b c d e f s0 s0 s0 s0 s4 s1 s0 s1 s1 s1 s0 s0 s3 s0 s3 s4 s3 s1 s3 s3 s1 s4 s0 s3 s1 s3 s4 s4 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: e?
s1
1