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
8fa7b079-b532-49ac-a244-048710d88a4d
fa205a1a-3caf-4285-8c6a-badd5ee97bed
{"states": ["s0", "s1", "s3", "s4", "s5", "s6", "s7", "s8", "s9", "s10"], "alphabets": "abc", "accepting_states": ["s9"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s9"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s8"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s8"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "c", "toStates": ["s7"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s4", "symbol": "b", "toStates": ["s9"]}, {"fromState": "s4", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s5", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s5", "symbol": "c", "toStates": ["s6"]}, {"fromState": "s6", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s6", "symbol": "b", "toStates": ["s10"]}, {"fromState": "s6", "symbol": "c", "toStates": ["s4"]}, {"fromState": "s7", "symbol": "a", "toStates": ["s8"]}, {"fromState": "s7", "symbol": "b", "toStates": ["s8"]}, {"fromState": "s7", "symbol": "c", "toStates": ["s9"]}, {"fromState": "s8", "symbol": "a", "toStates": ["s8"]}, {"fromState": "s8", "symbol": "b", "toStates": ["s5"]}, {"fromState": "s8", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s9", "symbol": "a", "toStates": ["s9"]}, {"fromState": "s9", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s9", "symbol": "c", "toStates": ["s7"]}, {"fromState": "s10", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s10", "symbol": "b", "toStates": ["s9"]}, {"fromState": "s10", "symbol": "c", "toStates": ["s5"]}]}
3
{"a":{"s0":"s1","s1":"s8","s3":"s3","s4":"s3","s5":"s0","s6":"s3","s7":"s8","s8":"s8","s9":"s9","s10":"s0"},"b":{"s0":"s9","s1":"s6","s3":"s1","s4":"s9","s5":"s3","s6":"s10","s7":"s8","s8":"s5","s9":"s3","s10":"s9"},"c":{"s0":"s8","s1":"s1","s3":"s7","s4":"s1","s5":"s6","s6":"s4","s7":"s9","s8":"s1","s9":"s7","s10":"s5"}}
Given the following FSM: a b c s0 s1 s9 s8 s1 s8 s6 s1 s3 s3 s1 s7 s4 s3 s9 s1 s5 s0 s3 s6 s6 s3 s10 s4 s7 s8 s8 s9 s8 s8 s5 s1 s9 s9 s3 s7 s10 s0 s9 s5 Initial state: s0, and Accepting states: s9 What will be the state after reading the following input: cbcccbccababcaaaabcbbabb?
s1
24
2856c338-183a-4322-b480-5ebacc6f4583
fa205a1a-3caf-4285-8c6a-badd5ee97bed
{"states": ["s0", "s1", "s3", "s4", "s5", "s6", "s7", "s8", "s9", "s10"], "alphabets": "abc", "accepting_states": ["s9"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s9"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s8"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s8"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "c", "toStates": ["s7"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s4", "symbol": "b", "toStates": ["s9"]}, {"fromState": "s4", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s5", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s5", "symbol": "c", "toStates": ["s6"]}, {"fromState": "s6", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s6", "symbol": "b", "toStates": ["s10"]}, {"fromState": "s6", "symbol": "c", "toStates": ["s4"]}, {"fromState": "s7", "symbol": "a", "toStates": ["s8"]}, {"fromState": "s7", "symbol": "b", "toStates": ["s8"]}, {"fromState": "s7", "symbol": "c", "toStates": ["s9"]}, {"fromState": "s8", "symbol": "a", "toStates": ["s8"]}, {"fromState": "s8", "symbol": "b", "toStates": ["s5"]}, {"fromState": "s8", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s9", "symbol": "a", "toStates": ["s9"]}, {"fromState": "s9", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s9", "symbol": "c", "toStates": ["s7"]}, {"fromState": "s10", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s10", "symbol": "b", "toStates": ["s9"]}, {"fromState": "s10", "symbol": "c", "toStates": ["s5"]}]}
3
{"a":{"s0":"s1","s1":"s8","s3":"s3","s4":"s3","s5":"s0","s6":"s3","s7":"s8","s8":"s8","s9":"s9","s10":"s0"},"b":{"s0":"s9","s1":"s6","s3":"s1","s4":"s9","s5":"s3","s6":"s10","s7":"s8","s8":"s5","s9":"s3","s10":"s9"},"c":{"s0":"s8","s1":"s1","s3":"s7","s4":"s1","s5":"s6","s6":"s4","s7":"s9","s8":"s1","s9":"s7","s10":"s5"}}
Given the following FSM: a b c s0 s1 s9 s8 s1 s8 s6 s1 s3 s3 s1 s7 s4 s3 s9 s1 s5 s0 s3 s6 s6 s3 s10 s4 s7 s8 s8 s9 s8 s8 s5 s1 s9 s9 s3 s7 s10 s0 s9 s5 Initial state: s0, and Accepting states: s9 What will be the state after reading the following input: cbcccbccababcaaaabcbbabba?
s8
25
7e3995f5-c70e-4410-9fa1-b0ede1cf56c2
fa205a1a-3caf-4285-8c6a-badd5ee97bed
{"states": ["s0", "s1", "s3", "s4", "s5", "s6", "s7", "s8", "s9", "s10"], "alphabets": "abc", "accepting_states": ["s9"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s9"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s8"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s8"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "c", "toStates": ["s7"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s4", "symbol": "b", "toStates": ["s9"]}, {"fromState": "s4", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s5", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s5", "symbol": "c", "toStates": ["s6"]}, {"fromState": "s6", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s6", "symbol": "b", "toStates": ["s10"]}, {"fromState": "s6", "symbol": "c", "toStates": ["s4"]}, {"fromState": "s7", "symbol": "a", "toStates": ["s8"]}, {"fromState": "s7", "symbol": "b", "toStates": ["s8"]}, {"fromState": "s7", "symbol": "c", "toStates": ["s9"]}, {"fromState": "s8", "symbol": "a", "toStates": ["s8"]}, {"fromState": "s8", "symbol": "b", "toStates": ["s5"]}, {"fromState": "s8", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s9", "symbol": "a", "toStates": ["s9"]}, {"fromState": "s9", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s9", "symbol": "c", "toStates": ["s7"]}, {"fromState": "s10", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s10", "symbol": "b", "toStates": ["s9"]}, {"fromState": "s10", "symbol": "c", "toStates": ["s5"]}]}
3
{"a":{"s0":"s1","s1":"s8","s3":"s3","s4":"s3","s5":"s0","s6":"s3","s7":"s8","s8":"s8","s9":"s9","s10":"s0"},"b":{"s0":"s9","s1":"s6","s3":"s1","s4":"s9","s5":"s3","s6":"s10","s7":"s8","s8":"s5","s9":"s3","s10":"s9"},"c":{"s0":"s8","s1":"s1","s3":"s7","s4":"s1","s5":"s6","s6":"s4","s7":"s9","s8":"s1","s9":"s7","s10":"s5"}}
Given the following FSM: a b c s0 s1 s9 s8 s1 s8 s6 s1 s3 s3 s1 s7 s4 s3 s9 s1 s5 s0 s3 s6 s6 s3 s10 s4 s7 s8 s8 s9 s8 s8 s5 s1 s9 s9 s3 s7 s10 s0 s9 s5 Initial state: s0, and Accepting states: s9 What will be the state after reading the following input: cbcccbccababcaaaabcbbabbab?
s5
26
30ca2506-fd12-49a6-884d-1e288e2b51a6
fa205a1a-3caf-4285-8c6a-badd5ee97bed
{"states": ["s0", "s1", "s3", "s4", "s5", "s6", "s7", "s8", "s9", "s10"], "alphabets": "abc", "accepting_states": ["s9"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s9"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s8"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s8"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "c", "toStates": ["s7"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s4", "symbol": "b", "toStates": ["s9"]}, {"fromState": "s4", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s5", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s5", "symbol": "c", "toStates": ["s6"]}, {"fromState": "s6", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s6", "symbol": "b", "toStates": ["s10"]}, {"fromState": "s6", "symbol": "c", "toStates": ["s4"]}, {"fromState": "s7", "symbol": "a", "toStates": ["s8"]}, {"fromState": "s7", "symbol": "b", "toStates": ["s8"]}, {"fromState": "s7", "symbol": "c", "toStates": ["s9"]}, {"fromState": "s8", "symbol": "a", "toStates": ["s8"]}, {"fromState": "s8", "symbol": "b", "toStates": ["s5"]}, {"fromState": "s8", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s9", "symbol": "a", "toStates": ["s9"]}, {"fromState": "s9", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s9", "symbol": "c", "toStates": ["s7"]}, {"fromState": "s10", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s10", "symbol": "b", "toStates": ["s9"]}, {"fromState": "s10", "symbol": "c", "toStates": ["s5"]}]}
3
{"a":{"s0":"s1","s1":"s8","s3":"s3","s4":"s3","s5":"s0","s6":"s3","s7":"s8","s8":"s8","s9":"s9","s10":"s0"},"b":{"s0":"s9","s1":"s6","s3":"s1","s4":"s9","s5":"s3","s6":"s10","s7":"s8","s8":"s5","s9":"s3","s10":"s9"},"c":{"s0":"s8","s1":"s1","s3":"s7","s4":"s1","s5":"s6","s6":"s4","s7":"s9","s8":"s1","s9":"s7","s10":"s5"}}
Given the following FSM: a b c s0 s1 s9 s8 s1 s8 s6 s1 s3 s3 s1 s7 s4 s3 s9 s1 s5 s0 s3 s6 s6 s3 s10 s4 s7 s8 s8 s9 s8 s8 s5 s1 s9 s9 s3 s7 s10 s0 s9 s5 Initial state: s0, and Accepting states: s9 What will be the state after reading the following input: cbcccbccababcaaaabcbbabbabc?
s6
27
3e9644fd-42f3-44f8-ab34-2d8a0e4709c0
fa205a1a-3caf-4285-8c6a-badd5ee97bed
{"states": ["s0", "s1", "s3", "s4", "s5", "s6", "s7", "s8", "s9", "s10"], "alphabets": "abc", "accepting_states": ["s9"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s9"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s8"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s8"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "c", "toStates": ["s7"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s4", "symbol": "b", "toStates": ["s9"]}, {"fromState": "s4", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s5", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s5", "symbol": "c", "toStates": ["s6"]}, {"fromState": "s6", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s6", "symbol": "b", "toStates": ["s10"]}, {"fromState": "s6", "symbol": "c", "toStates": ["s4"]}, {"fromState": "s7", "symbol": "a", "toStates": ["s8"]}, {"fromState": "s7", "symbol": "b", "toStates": ["s8"]}, {"fromState": "s7", "symbol": "c", "toStates": ["s9"]}, {"fromState": "s8", "symbol": "a", "toStates": ["s8"]}, {"fromState": "s8", "symbol": "b", "toStates": ["s5"]}, {"fromState": "s8", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s9", "symbol": "a", "toStates": ["s9"]}, {"fromState": "s9", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s9", "symbol": "c", "toStates": ["s7"]}, {"fromState": "s10", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s10", "symbol": "b", "toStates": ["s9"]}, {"fromState": "s10", "symbol": "c", "toStates": ["s5"]}]}
3
{"a":{"s0":"s1","s1":"s8","s3":"s3","s4":"s3","s5":"s0","s6":"s3","s7":"s8","s8":"s8","s9":"s9","s10":"s0"},"b":{"s0":"s9","s1":"s6","s3":"s1","s4":"s9","s5":"s3","s6":"s10","s7":"s8","s8":"s5","s9":"s3","s10":"s9"},"c":{"s0":"s8","s1":"s1","s3":"s7","s4":"s1","s5":"s6","s6":"s4","s7":"s9","s8":"s1","s9":"s7","s10":"s5"}}
Given the following FSM: a b c s0 s1 s9 s8 s1 s8 s6 s1 s3 s3 s1 s7 s4 s3 s9 s1 s5 s0 s3 s6 s6 s3 s10 s4 s7 s8 s8 s9 s8 s8 s5 s1 s9 s9 s3 s7 s10 s0 s9 s5 Initial state: s0, and Accepting states: s9 What will be the state after reading the following input: cbcccbccababcaaaabcbbabbabcc?
s4
28
5bcd5ce6-faae-449c-b975-5f4f43d0a382
fa205a1a-3caf-4285-8c6a-badd5ee97bed
{"states": ["s0", "s1", "s3", "s4", "s5", "s6", "s7", "s8", "s9", "s10"], "alphabets": "abc", "accepting_states": ["s9"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s9"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s8"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s8"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "c", "toStates": ["s7"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s4", "symbol": "b", "toStates": ["s9"]}, {"fromState": "s4", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s5", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s5", "symbol": "c", "toStates": ["s6"]}, {"fromState": "s6", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s6", "symbol": "b", "toStates": ["s10"]}, {"fromState": "s6", "symbol": "c", "toStates": ["s4"]}, {"fromState": "s7", "symbol": "a", "toStates": ["s8"]}, {"fromState": "s7", "symbol": "b", "toStates": ["s8"]}, {"fromState": "s7", "symbol": "c", "toStates": ["s9"]}, {"fromState": "s8", "symbol": "a", "toStates": ["s8"]}, {"fromState": "s8", "symbol": "b", "toStates": ["s5"]}, {"fromState": "s8", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s9", "symbol": "a", "toStates": ["s9"]}, {"fromState": "s9", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s9", "symbol": "c", "toStates": ["s7"]}, {"fromState": "s10", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s10", "symbol": "b", "toStates": ["s9"]}, {"fromState": "s10", "symbol": "c", "toStates": ["s5"]}]}
3
{"a":{"s0":"s1","s1":"s8","s3":"s3","s4":"s3","s5":"s0","s6":"s3","s7":"s8","s8":"s8","s9":"s9","s10":"s0"},"b":{"s0":"s9","s1":"s6","s3":"s1","s4":"s9","s5":"s3","s6":"s10","s7":"s8","s8":"s5","s9":"s3","s10":"s9"},"c":{"s0":"s8","s1":"s1","s3":"s7","s4":"s1","s5":"s6","s6":"s4","s7":"s9","s8":"s1","s9":"s7","s10":"s5"}}
Given the following FSM: a b c s0 s1 s9 s8 s1 s8 s6 s1 s3 s3 s1 s7 s4 s3 s9 s1 s5 s0 s3 s6 s6 s3 s10 s4 s7 s8 s8 s9 s8 s8 s5 s1 s9 s9 s3 s7 s10 s0 s9 s5 Initial state: s0, and Accepting states: s9 What will be the state after reading the following input: cbcccbccababcaaaabcbbabbabccc?
s1
29
56f16c68-6977-48c8-86eb-7078214c6646
1d774a45-15a8-4c25-94eb-d2e7284241e8
{"states": ["s0"], "alphabets": "abc", "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"]}]}
1
{"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"}}
Given the following FSM: a b c s0 s0 s0 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: a?
s0
1
c6e88d91-32a9-43cf-86ab-77bd285407ad
1d774a45-15a8-4c25-94eb-d2e7284241e8
{"states": ["s0"], "alphabets": "abc", "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"]}]}
1
{"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"}}
Given the following FSM: a b c s0 s0 s0 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: ac?
s0
2
dfb2e524-6bb5-41cd-b04b-6612ffb7fec1
1d774a45-15a8-4c25-94eb-d2e7284241e8
{"states": ["s0"], "alphabets": "abc", "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"]}]}
1
{"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"}}
Given the following FSM: a b c s0 s0 s0 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: acc?
s0
3
07cd0df6-3b7a-4772-a4e0-ec88d4da0e8c
1d774a45-15a8-4c25-94eb-d2e7284241e8
{"states": ["s0"], "alphabets": "abc", "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"]}]}
1
{"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"}}
Given the following FSM: a b c s0 s0 s0 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: acca?
s0
4
cbb503c3-15f3-4006-98f8-9868f3a1f0b3
1d774a45-15a8-4c25-94eb-d2e7284241e8
{"states": ["s0"], "alphabets": "abc", "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"]}]}
1
{"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"}}
Given the following FSM: a b c s0 s0 s0 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: accab?
s0
5
bf4eae7d-60e9-457f-8928-3ccbbe363565
1d774a45-15a8-4c25-94eb-d2e7284241e8
{"states": ["s0"], "alphabets": "abc", "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"]}]}
1
{"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"}}
Given the following FSM: a b c s0 s0 s0 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: accaba?
s0
6
3149304f-5d4b-4eb7-a2b9-1a67ba07f550
1d774a45-15a8-4c25-94eb-d2e7284241e8
{"states": ["s0"], "alphabets": "abc", "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"]}]}
1
{"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"}}
Given the following FSM: a b c s0 s0 s0 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: accabab?
s0
7
6e0bd14c-1310-4cea-adf9-704d0f90135a
1d774a45-15a8-4c25-94eb-d2e7284241e8
{"states": ["s0"], "alphabets": "abc", "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"]}]}
1
{"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"}}
Given the following FSM: a b c s0 s0 s0 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: accababa?
s0
8
46dfdb19-f1d6-44b4-9bdd-4705c720a366
1d774a45-15a8-4c25-94eb-d2e7284241e8
{"states": ["s0"], "alphabets": "abc", "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"]}]}
1
{"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"}}
Given the following FSM: a b c s0 s0 s0 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: accababaa?
s0
9
abdbc109-06c9-4020-809b-21abdc626283
1d774a45-15a8-4c25-94eb-d2e7284241e8
{"states": ["s0"], "alphabets": "abc", "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"]}]}
1
{"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"}}
Given the following FSM: a b c s0 s0 s0 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: accababaab?
s0
10
d493a0ea-876e-48e7-b838-f44119b177c0
1d774a45-15a8-4c25-94eb-d2e7284241e8
{"states": ["s0"], "alphabets": "abc", "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"]}]}
1
{"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"}}
Given the following FSM: a b c s0 s0 s0 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: accababaabb?
s0
11
54e56bcb-be93-49ac-bf5c-cc8d91c79246
1d774a45-15a8-4c25-94eb-d2e7284241e8
{"states": ["s0"], "alphabets": "abc", "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"]}]}
1
{"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"}}
Given the following FSM: a b c s0 s0 s0 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: accababaabbc?
s0
12
b58c911c-2790-4fe8-850d-434059018f88
1d774a45-15a8-4c25-94eb-d2e7284241e8
{"states": ["s0"], "alphabets": "abc", "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"]}]}
1
{"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"}}
Given the following FSM: a b c s0 s0 s0 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: accababaabbca?
s0
13
bda44464-c28a-4ecc-92f7-16f850a3acf9
1d774a45-15a8-4c25-94eb-d2e7284241e8
{"states": ["s0"], "alphabets": "abc", "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"]}]}
1
{"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"}}
Given the following FSM: a b c s0 s0 s0 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: accababaabbcac?
s0
14
d174959a-4ca1-4601-b339-4a081bde4b2e
1d774a45-15a8-4c25-94eb-d2e7284241e8
{"states": ["s0"], "alphabets": "abc", "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"]}]}
1
{"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"}}
Given the following FSM: a b c s0 s0 s0 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: accababaabbcacb?
s0
15
316230af-e6af-41c2-b2e9-4a369fcff8b0
1d774a45-15a8-4c25-94eb-d2e7284241e8
{"states": ["s0"], "alphabets": "abc", "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"]}]}
1
{"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"}}
Given the following FSM: a b c s0 s0 s0 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: accababaabbcacbb?
s0
16
66b4da0b-d96f-4699-b82d-3bad8f98d546
1d774a45-15a8-4c25-94eb-d2e7284241e8
{"states": ["s0"], "alphabets": "abc", "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"]}]}
1
{"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"}}
Given the following FSM: a b c s0 s0 s0 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: accababaabbcacbbc?
s0
17
a7dec81c-fdf1-4f85-93db-1a4c8454893f
1d774a45-15a8-4c25-94eb-d2e7284241e8
{"states": ["s0"], "alphabets": "abc", "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"]}]}
1
{"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"}}
Given the following FSM: a b c s0 s0 s0 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: accababaabbcacbbcb?
s0
18
e4b75e99-db89-44ee-9c06-ab69d7af81cb
1d774a45-15a8-4c25-94eb-d2e7284241e8
{"states": ["s0"], "alphabets": "abc", "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"]}]}
1
{"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"}}
Given the following FSM: a b c s0 s0 s0 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: accababaabbcacbbcbb?
s0
19
9cbe72bf-b3ea-4fd1-a641-046c8924a86f
1d774a45-15a8-4c25-94eb-d2e7284241e8
{"states": ["s0"], "alphabets": "abc", "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"]}]}
1
{"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"}}
Given the following FSM: a b c s0 s0 s0 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: accababaabbcacbbcbba?
s0
20
6bc5853a-bb2e-4e4c-953d-9e376b511626
1d774a45-15a8-4c25-94eb-d2e7284241e8
{"states": ["s0"], "alphabets": "abc", "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"]}]}
1
{"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"}}
Given the following FSM: a b c s0 s0 s0 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: accababaabbcacbbcbbaa?
s0
21
3ec630af-f318-4688-a347-bf5ef6d73f7b
1d774a45-15a8-4c25-94eb-d2e7284241e8
{"states": ["s0"], "alphabets": "abc", "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"]}]}
1
{"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"}}
Given the following FSM: a b c s0 s0 s0 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: accababaabbcacbbcbbaac?
s0
22
a44d87ce-5d16-4334-8ee2-b5cb0ee4d185
1d774a45-15a8-4c25-94eb-d2e7284241e8
{"states": ["s0"], "alphabets": "abc", "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"]}]}
1
{"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"}}
Given the following FSM: a b c s0 s0 s0 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: accababaabbcacbbcbbaacc?
s0
23
16ea1b14-d570-4ee8-968a-66b73d0b870e
1d774a45-15a8-4c25-94eb-d2e7284241e8
{"states": ["s0"], "alphabets": "abc", "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"]}]}
1
{"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"}}
Given the following FSM: a b c s0 s0 s0 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: accababaabbcacbbcbbaacca?
s0
24
f9885c74-791d-4e10-97f9-5da0c6475982
1d774a45-15a8-4c25-94eb-d2e7284241e8
{"states": ["s0"], "alphabets": "abc", "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"]}]}
1
{"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"}}
Given the following FSM: a b c s0 s0 s0 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: accababaabbcacbbcbbaaccaa?
s0
25
307dda37-2aaa-4452-96a7-6328852851d6
1d774a45-15a8-4c25-94eb-d2e7284241e8
{"states": ["s0"], "alphabets": "abc", "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"]}]}
1
{"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"}}
Given the following FSM: a b c s0 s0 s0 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: accababaabbcacbbcbbaaccaab?
s0
26
a0ad5527-730e-4f5e-961a-06f593e62d61
1d774a45-15a8-4c25-94eb-d2e7284241e8
{"states": ["s0"], "alphabets": "abc", "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"]}]}
1
{"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"}}
Given the following FSM: a b c s0 s0 s0 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: accababaabbcacbbcbbaaccaaba?
s0
27
2b46cde8-8fcb-47bb-b4a1-155d32ce49ea
1d774a45-15a8-4c25-94eb-d2e7284241e8
{"states": ["s0"], "alphabets": "abc", "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"]}]}
1
{"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"}}
Given the following FSM: a b c s0 s0 s0 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: accababaabbcacbbcbbaaccaabac?
s0
28
05d5fa94-72f6-48be-bf70-dc87c38c066c
1d774a45-15a8-4c25-94eb-d2e7284241e8
{"states": ["s0"], "alphabets": "abc", "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"]}]}
1
{"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"}}
Given the following FSM: a b c s0 s0 s0 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: accababaabbcacbbcbbaaccaabacc?
s0
29
8f7ee722-faec-4e30-9147-2a737c91a55c
c62b9a8d-0b1a-4de4-bb67-b28d00410711
{"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}]}
2
{"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s0","s1":"s0"},"c":{"s0":"s1","s1":"s1"}}
Given the following FSM: a b c s0 s1 s0 s1 s1 s0 s0 s1 Initial state: s0, and Accepting states: s0, s1 What will be the state after reading the following input: a?
s1
1
bc9423d2-39af-490f-b9fb-9c3990d9655e
c62b9a8d-0b1a-4de4-bb67-b28d00410711
{"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}]}
2
{"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s0","s1":"s0"},"c":{"s0":"s1","s1":"s1"}}
Given the following FSM: a b c s0 s1 s0 s1 s1 s0 s0 s1 Initial state: s0, and Accepting states: s0, s1 What will be the state after reading the following input: ac?
s1
2
f6537f49-6ddd-4550-aeb8-6f92a3f660c0
c62b9a8d-0b1a-4de4-bb67-b28d00410711
{"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}]}
2
{"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s0","s1":"s0"},"c":{"s0":"s1","s1":"s1"}}
Given the following FSM: a b c s0 s1 s0 s1 s1 s0 s0 s1 Initial state: s0, and Accepting states: s0, s1 What will be the state after reading the following input: acc?
s1
3
7e652e5f-2d2d-4873-8591-7d7e8d971046
c62b9a8d-0b1a-4de4-bb67-b28d00410711
{"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}]}
2
{"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s0","s1":"s0"},"c":{"s0":"s1","s1":"s1"}}
Given the following FSM: a b c s0 s1 s0 s1 s1 s0 s0 s1 Initial state: s0, and Accepting states: s0, s1 What will be the state after reading the following input: accb?
s0
4
6678735f-c73b-4de7-b967-15a43d245bbc
c62b9a8d-0b1a-4de4-bb67-b28d00410711
{"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}]}
2
{"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s0","s1":"s0"},"c":{"s0":"s1","s1":"s1"}}
Given the following FSM: a b c s0 s1 s0 s1 s1 s0 s0 s1 Initial state: s0, and Accepting states: s0, s1 What will be the state after reading the following input: accbc?
s1
5
165f7f07-f171-4f57-a691-edeb734393df
c62b9a8d-0b1a-4de4-bb67-b28d00410711
{"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}]}
2
{"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s0","s1":"s0"},"c":{"s0":"s1","s1":"s1"}}
Given the following FSM: a b c s0 s1 s0 s1 s1 s0 s0 s1 Initial state: s0, and Accepting states: s0, s1 What will be the state after reading the following input: accbca?
s0
6
81668144-3a46-4342-a40e-8251f432d0e0
c62b9a8d-0b1a-4de4-bb67-b28d00410711
{"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}]}
2
{"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s0","s1":"s0"},"c":{"s0":"s1","s1":"s1"}}
Given the following FSM: a b c s0 s1 s0 s1 s1 s0 s0 s1 Initial state: s0, and Accepting states: s0, s1 What will be the state after reading the following input: accbcab?
s0
7
6ab5d15b-94f6-47bc-9a40-3774d1fe0d76
c62b9a8d-0b1a-4de4-bb67-b28d00410711
{"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}]}
2
{"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s0","s1":"s0"},"c":{"s0":"s1","s1":"s1"}}
Given the following FSM: a b c s0 s1 s0 s1 s1 s0 s0 s1 Initial state: s0, and Accepting states: s0, s1 What will be the state after reading the following input: accbcaba?
s1
8
8206d4dd-473c-4abd-92fd-19c5677b2fce
c62b9a8d-0b1a-4de4-bb67-b28d00410711
{"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}]}
2
{"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s0","s1":"s0"},"c":{"s0":"s1","s1":"s1"}}
Given the following FSM: a b c s0 s1 s0 s1 s1 s0 s0 s1 Initial state: s0, and Accepting states: s0, s1 What will be the state after reading the following input: accbcabaa?
s0
9
b0f9d54f-5188-4669-9a66-75db0e8bfdf3
c62b9a8d-0b1a-4de4-bb67-b28d00410711
{"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}]}
2
{"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s0","s1":"s0"},"c":{"s0":"s1","s1":"s1"}}
Given the following FSM: a b c s0 s1 s0 s1 s1 s0 s0 s1 Initial state: s0, and Accepting states: s0, s1 What will be the state after reading the following input: accbcabaac?
s1
10
c5c29bf0-574b-40da-bbcf-10003239aa94
c62b9a8d-0b1a-4de4-bb67-b28d00410711
{"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}]}
2
{"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s0","s1":"s0"},"c":{"s0":"s1","s1":"s1"}}
Given the following FSM: a b c s0 s1 s0 s1 s1 s0 s0 s1 Initial state: s0, and Accepting states: s0, s1 What will be the state after reading the following input: accbcabaacb?
s0
11
134c4cbe-ce96-4be6-83eb-8e412e7fb525
c62b9a8d-0b1a-4de4-bb67-b28d00410711
{"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}]}
2
{"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s0","s1":"s0"},"c":{"s0":"s1","s1":"s1"}}
Given the following FSM: a b c s0 s1 s0 s1 s1 s0 s0 s1 Initial state: s0, and Accepting states: s0, s1 What will be the state after reading the following input: accbcabaacba?
s1
12
f7d52149-d006-4f9a-85ad-f88501c3fc08
c62b9a8d-0b1a-4de4-bb67-b28d00410711
{"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}]}
2
{"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s0","s1":"s0"},"c":{"s0":"s1","s1":"s1"}}
Given the following FSM: a b c s0 s1 s0 s1 s1 s0 s0 s1 Initial state: s0, and Accepting states: s0, s1 What will be the state after reading the following input: accbcabaacbaa?
s0
13
4f99d36a-1a90-42b5-9ea5-6250434b7878
c62b9a8d-0b1a-4de4-bb67-b28d00410711
{"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}]}
2
{"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s0","s1":"s0"},"c":{"s0":"s1","s1":"s1"}}
Given the following FSM: a b c s0 s1 s0 s1 s1 s0 s0 s1 Initial state: s0, and Accepting states: s0, s1 What will be the state after reading the following input: accbcabaacbaaa?
s1
14
ca352242-eefc-472f-bf36-15f69c04e19a
c62b9a8d-0b1a-4de4-bb67-b28d00410711
{"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}]}
2
{"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s0","s1":"s0"},"c":{"s0":"s1","s1":"s1"}}
Given the following FSM: a b c s0 s1 s0 s1 s1 s0 s0 s1 Initial state: s0, and Accepting states: s0, s1 What will be the state after reading the following input: accbcabaacbaaab?
s0
15
5a6316db-09a5-44dd-ad1d-bc3ef446955e
c62b9a8d-0b1a-4de4-bb67-b28d00410711
{"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}]}
2
{"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s0","s1":"s0"},"c":{"s0":"s1","s1":"s1"}}
Given the following FSM: a b c s0 s1 s0 s1 s1 s0 s0 s1 Initial state: s0, and Accepting states: s0, s1 What will be the state after reading the following input: accbcabaacbaaaba?
s1
16
6f032c64-785f-49c6-bea2-ddeca4aadb62
c62b9a8d-0b1a-4de4-bb67-b28d00410711
{"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}]}
2
{"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s0","s1":"s0"},"c":{"s0":"s1","s1":"s1"}}
Given the following FSM: a b c s0 s1 s0 s1 s1 s0 s0 s1 Initial state: s0, and Accepting states: s0, s1 What will be the state after reading the following input: accbcabaacbaaabaa?
s0
17
51b170a2-8886-40f0-b4b5-627fa30036ff
c62b9a8d-0b1a-4de4-bb67-b28d00410711
{"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}]}
2
{"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s0","s1":"s0"},"c":{"s0":"s1","s1":"s1"}}
Given the following FSM: a b c s0 s1 s0 s1 s1 s0 s0 s1 Initial state: s0, and Accepting states: s0, s1 What will be the state after reading the following input: accbcabaacbaaabaab?
s0
18
357fe8ad-672f-49bc-b410-45fc27f9a66a
c62b9a8d-0b1a-4de4-bb67-b28d00410711
{"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}]}
2
{"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s0","s1":"s0"},"c":{"s0":"s1","s1":"s1"}}
Given the following FSM: a b c s0 s1 s0 s1 s1 s0 s0 s1 Initial state: s0, and Accepting states: s0, s1 What will be the state after reading the following input: accbcabaacbaaabaabb?
s0
19
9221695f-8a3b-4d4c-9a24-e1e0c56e00bd
c62b9a8d-0b1a-4de4-bb67-b28d00410711
{"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}]}
2
{"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s0","s1":"s0"},"c":{"s0":"s1","s1":"s1"}}
Given the following FSM: a b c s0 s1 s0 s1 s1 s0 s0 s1 Initial state: s0, and Accepting states: s0, s1 What will be the state after reading the following input: accbcabaacbaaabaabbb?
s0
20
2351bc82-1029-47a8-8c88-e71da9ee9b89
c62b9a8d-0b1a-4de4-bb67-b28d00410711
{"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}]}
2
{"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s0","s1":"s0"},"c":{"s0":"s1","s1":"s1"}}
Given the following FSM: a b c s0 s1 s0 s1 s1 s0 s0 s1 Initial state: s0, and Accepting states: s0, s1 What will be the state after reading the following input: accbcabaacbaaabaabbbb?
s0
21
8723045e-6c5c-424e-b1b8-60c97d83a509
c62b9a8d-0b1a-4de4-bb67-b28d00410711
{"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}]}
2
{"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s0","s1":"s0"},"c":{"s0":"s1","s1":"s1"}}
Given the following FSM: a b c s0 s1 s0 s1 s1 s0 s0 s1 Initial state: s0, and Accepting states: s0, s1 What will be the state after reading the following input: accbcabaacbaaabaabbbbb?
s0
22
72941e05-e098-43ee-8408-81d138acb2a5
c62b9a8d-0b1a-4de4-bb67-b28d00410711
{"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}]}
2
{"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s0","s1":"s0"},"c":{"s0":"s1","s1":"s1"}}
Given the following FSM: a b c s0 s1 s0 s1 s1 s0 s0 s1 Initial state: s0, and Accepting states: s0, s1 What will be the state after reading the following input: accbcabaacbaaabaabbbbbb?
s0
23
c5ad74a1-1476-4728-b35d-06a194fe3015
c62b9a8d-0b1a-4de4-bb67-b28d00410711
{"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}]}
2
{"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s0","s1":"s0"},"c":{"s0":"s1","s1":"s1"}}
Given the following FSM: a b c s0 s1 s0 s1 s1 s0 s0 s1 Initial state: s0, and Accepting states: s0, s1 What will be the state after reading the following input: accbcabaacbaaabaabbbbbbb?
s0
24
42585921-e6eb-4c29-90d3-c1e8ef5ddfb1
c62b9a8d-0b1a-4de4-bb67-b28d00410711
{"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}]}
2
{"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s0","s1":"s0"},"c":{"s0":"s1","s1":"s1"}}
Given the following FSM: a b c s0 s1 s0 s1 s1 s0 s0 s1 Initial state: s0, and Accepting states: s0, s1 What will be the state after reading the following input: accbcabaacbaaabaabbbbbbbc?
s1
25
5347690d-9704-418a-8bb2-6df640f6c835
c62b9a8d-0b1a-4de4-bb67-b28d00410711
{"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}]}
2
{"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s0","s1":"s0"},"c":{"s0":"s1","s1":"s1"}}
Given the following FSM: a b c s0 s1 s0 s1 s1 s0 s0 s1 Initial state: s0, and Accepting states: s0, s1 What will be the state after reading the following input: accbcabaacbaaabaabbbbbbbcb?
s0
26
2c0f2ae8-ebf1-4558-88ee-be905ac2cddf
c62b9a8d-0b1a-4de4-bb67-b28d00410711
{"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}]}
2
{"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s0","s1":"s0"},"c":{"s0":"s1","s1":"s1"}}
Given the following FSM: a b c s0 s1 s0 s1 s1 s0 s0 s1 Initial state: s0, and Accepting states: s0, s1 What will be the state after reading the following input: accbcabaacbaaabaabbbbbbbcbc?
s1
27
d2e5ed09-21bb-4906-9682-782a69395229
c62b9a8d-0b1a-4de4-bb67-b28d00410711
{"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}]}
2
{"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s0","s1":"s0"},"c":{"s0":"s1","s1":"s1"}}
Given the following FSM: a b c s0 s1 s0 s1 s1 s0 s0 s1 Initial state: s0, and Accepting states: s0, s1 What will be the state after reading the following input: accbcabaacbaaabaabbbbbbbcbca?
s0
28
8402a161-020f-40e9-bd9a-dc00ad78cc81
c62b9a8d-0b1a-4de4-bb67-b28d00410711
{"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}]}
2
{"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s0","s1":"s0"},"c":{"s0":"s1","s1":"s1"}}
Given the following FSM: a b c s0 s1 s0 s1 s1 s0 s0 s1 Initial state: s0, and Accepting states: s0, s1 What will be the state after reading the following input: accbcabaacbaaabaabbbbbbbcbcaa?
s1
29
8ef53963-391c-43ea-be88-44a8fbd396b7
f1c374a4-776c-4a4a-b271-3ef0bee18b61
{"states": ["s0", "s1", "s2"], "alphabets": "abc", "accepting_states": ["s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s1"]}]}
2
{"a":{"s0":"s2","s1":"s2","s2":"s2"},"b":{"s0":"s1","s1":"s0","s2":"s0"},"c":{"s0":"s1","s1":"s1","s2":"s1"}}
Given the following FSM: a b c s0 s2 s1 s1 s1 s2 s0 s1 s2 s2 s0 s1 Initial state: s0, and Accepting states: s2 What will be the state after reading the following input: c?
s1
1
b64fb1f8-aaee-47f8-b5ad-10bf71823846
f1c374a4-776c-4a4a-b271-3ef0bee18b61
{"states": ["s0", "s1", "s2"], "alphabets": "abc", "accepting_states": ["s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s1"]}]}
2
{"a":{"s0":"s2","s1":"s2","s2":"s2"},"b":{"s0":"s1","s1":"s0","s2":"s0"},"c":{"s0":"s1","s1":"s1","s2":"s1"}}
Given the following FSM: a b c s0 s2 s1 s1 s1 s2 s0 s1 s2 s2 s0 s1 Initial state: s0, and Accepting states: s2 What will be the state after reading the following input: cc?
s1
2
f3aa6157-b30b-4706-bfe3-660b20c123e9
f1c374a4-776c-4a4a-b271-3ef0bee18b61
{"states": ["s0", "s1", "s2"], "alphabets": "abc", "accepting_states": ["s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s1"]}]}
2
{"a":{"s0":"s2","s1":"s2","s2":"s2"},"b":{"s0":"s1","s1":"s0","s2":"s0"},"c":{"s0":"s1","s1":"s1","s2":"s1"}}
Given the following FSM: a b c s0 s2 s1 s1 s1 s2 s0 s1 s2 s2 s0 s1 Initial state: s0, and Accepting states: s2 What will be the state after reading the following input: ccc?
s1
3
ea005747-2073-4fd0-9e28-65c03aa4b889
f1c374a4-776c-4a4a-b271-3ef0bee18b61
{"states": ["s0", "s1", "s2"], "alphabets": "abc", "accepting_states": ["s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s1"]}]}
2
{"a":{"s0":"s2","s1":"s2","s2":"s2"},"b":{"s0":"s1","s1":"s0","s2":"s0"},"c":{"s0":"s1","s1":"s1","s2":"s1"}}
Given the following FSM: a b c s0 s2 s1 s1 s1 s2 s0 s1 s2 s2 s0 s1 Initial state: s0, and Accepting states: s2 What will be the state after reading the following input: cccb?
s0
4
74ea66f7-b9b1-4a42-a127-d9815c9c8025
f1c374a4-776c-4a4a-b271-3ef0bee18b61
{"states": ["s0", "s1", "s2"], "alphabets": "abc", "accepting_states": ["s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s1"]}]}
2
{"a":{"s0":"s2","s1":"s2","s2":"s2"},"b":{"s0":"s1","s1":"s0","s2":"s0"},"c":{"s0":"s1","s1":"s1","s2":"s1"}}
Given the following FSM: a b c s0 s2 s1 s1 s1 s2 s0 s1 s2 s2 s0 s1 Initial state: s0, and Accepting states: s2 What will be the state after reading the following input: cccbc?
s1
5
3adf6ec7-e695-467c-8eae-780de7136d0b
f1c374a4-776c-4a4a-b271-3ef0bee18b61
{"states": ["s0", "s1", "s2"], "alphabets": "abc", "accepting_states": ["s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s1"]}]}
2
{"a":{"s0":"s2","s1":"s2","s2":"s2"},"b":{"s0":"s1","s1":"s0","s2":"s0"},"c":{"s0":"s1","s1":"s1","s2":"s1"}}
Given the following FSM: a b c s0 s2 s1 s1 s1 s2 s0 s1 s2 s2 s0 s1 Initial state: s0, and Accepting states: s2 What will be the state after reading the following input: cccbcc?
s1
6
98330409-3dd1-4052-b4e5-5aa15c83d1c9
f1c374a4-776c-4a4a-b271-3ef0bee18b61
{"states": ["s0", "s1", "s2"], "alphabets": "abc", "accepting_states": ["s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s1"]}]}
2
{"a":{"s0":"s2","s1":"s2","s2":"s2"},"b":{"s0":"s1","s1":"s0","s2":"s0"},"c":{"s0":"s1","s1":"s1","s2":"s1"}}
Given the following FSM: a b c s0 s2 s1 s1 s1 s2 s0 s1 s2 s2 s0 s1 Initial state: s0, and Accepting states: s2 What will be the state after reading the following input: cccbccc?
s1
7
896e59bc-aac4-4263-943d-7165adec6226
f1c374a4-776c-4a4a-b271-3ef0bee18b61
{"states": ["s0", "s1", "s2"], "alphabets": "abc", "accepting_states": ["s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s1"]}]}
2
{"a":{"s0":"s2","s1":"s2","s2":"s2"},"b":{"s0":"s1","s1":"s0","s2":"s0"},"c":{"s0":"s1","s1":"s1","s2":"s1"}}
Given the following FSM: a b c s0 s2 s1 s1 s1 s2 s0 s1 s2 s2 s0 s1 Initial state: s0, and Accepting states: s2 What will be the state after reading the following input: cccbccca?
s2
8
8c3be491-0b04-48ad-934e-428d77f02851
f1c374a4-776c-4a4a-b271-3ef0bee18b61
{"states": ["s0", "s1", "s2"], "alphabets": "abc", "accepting_states": ["s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s1"]}]}
2
{"a":{"s0":"s2","s1":"s2","s2":"s2"},"b":{"s0":"s1","s1":"s0","s2":"s0"},"c":{"s0":"s1","s1":"s1","s2":"s1"}}
Given the following FSM: a b c s0 s2 s1 s1 s1 s2 s0 s1 s2 s2 s0 s1 Initial state: s0, and Accepting states: s2 What will be the state after reading the following input: cccbcccac?
s1
9
f038250e-4ece-4893-aba3-84255f6bd6f2
f1c374a4-776c-4a4a-b271-3ef0bee18b61
{"states": ["s0", "s1", "s2"], "alphabets": "abc", "accepting_states": ["s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s1"]}]}
2
{"a":{"s0":"s2","s1":"s2","s2":"s2"},"b":{"s0":"s1","s1":"s0","s2":"s0"},"c":{"s0":"s1","s1":"s1","s2":"s1"}}
Given the following FSM: a b c s0 s2 s1 s1 s1 s2 s0 s1 s2 s2 s0 s1 Initial state: s0, and Accepting states: s2 What will be the state after reading the following input: cccbcccaca?
s2
10
f2c9c78e-cbb0-49b1-8901-79e980459448
f1c374a4-776c-4a4a-b271-3ef0bee18b61
{"states": ["s0", "s1", "s2"], "alphabets": "abc", "accepting_states": ["s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s1"]}]}
2
{"a":{"s0":"s2","s1":"s2","s2":"s2"},"b":{"s0":"s1","s1":"s0","s2":"s0"},"c":{"s0":"s1","s1":"s1","s2":"s1"}}
Given the following FSM: a b c s0 s2 s1 s1 s1 s2 s0 s1 s2 s2 s0 s1 Initial state: s0, and Accepting states: s2 What will be the state after reading the following input: cccbcccacaa?
s2
11
c000eb23-2eee-42ce-b20d-aed8a49a48b7
f1c374a4-776c-4a4a-b271-3ef0bee18b61
{"states": ["s0", "s1", "s2"], "alphabets": "abc", "accepting_states": ["s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s1"]}]}
2
{"a":{"s0":"s2","s1":"s2","s2":"s2"},"b":{"s0":"s1","s1":"s0","s2":"s0"},"c":{"s0":"s1","s1":"s1","s2":"s1"}}
Given the following FSM: a b c s0 s2 s1 s1 s1 s2 s0 s1 s2 s2 s0 s1 Initial state: s0, and Accepting states: s2 What will be the state after reading the following input: cccbcccacaac?
s1
12
9c37548a-c5b5-4c5b-a1c4-fcc2a7d1eca2
f1c374a4-776c-4a4a-b271-3ef0bee18b61
{"states": ["s0", "s1", "s2"], "alphabets": "abc", "accepting_states": ["s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s1"]}]}
2
{"a":{"s0":"s2","s1":"s2","s2":"s2"},"b":{"s0":"s1","s1":"s0","s2":"s0"},"c":{"s0":"s1","s1":"s1","s2":"s1"}}
Given the following FSM: a b c s0 s2 s1 s1 s1 s2 s0 s1 s2 s2 s0 s1 Initial state: s0, and Accepting states: s2 What will be the state after reading the following input: cccbcccacaacc?
s1
13
0bacb459-c928-487d-9516-8614d9d6b3dc
f1c374a4-776c-4a4a-b271-3ef0bee18b61
{"states": ["s0", "s1", "s2"], "alphabets": "abc", "accepting_states": ["s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s1"]}]}
2
{"a":{"s0":"s2","s1":"s2","s2":"s2"},"b":{"s0":"s1","s1":"s0","s2":"s0"},"c":{"s0":"s1","s1":"s1","s2":"s1"}}
Given the following FSM: a b c s0 s2 s1 s1 s1 s2 s0 s1 s2 s2 s0 s1 Initial state: s0, and Accepting states: s2 What will be the state after reading the following input: cccbcccacaaccb?
s0
14
57fb5dfb-edce-48f4-9f91-41c7a65f396a
f1c374a4-776c-4a4a-b271-3ef0bee18b61
{"states": ["s0", "s1", "s2"], "alphabets": "abc", "accepting_states": ["s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s1"]}]}
2
{"a":{"s0":"s2","s1":"s2","s2":"s2"},"b":{"s0":"s1","s1":"s0","s2":"s0"},"c":{"s0":"s1","s1":"s1","s2":"s1"}}
Given the following FSM: a b c s0 s2 s1 s1 s1 s2 s0 s1 s2 s2 s0 s1 Initial state: s0, and Accepting states: s2 What will be the state after reading the following input: cccbcccacaaccbc?
s1
15
927d3b4b-559e-41bf-9450-17258707a475
f1c374a4-776c-4a4a-b271-3ef0bee18b61
{"states": ["s0", "s1", "s2"], "alphabets": "abc", "accepting_states": ["s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s1"]}]}
2
{"a":{"s0":"s2","s1":"s2","s2":"s2"},"b":{"s0":"s1","s1":"s0","s2":"s0"},"c":{"s0":"s1","s1":"s1","s2":"s1"}}
Given the following FSM: a b c s0 s2 s1 s1 s1 s2 s0 s1 s2 s2 s0 s1 Initial state: s0, and Accepting states: s2 What will be the state after reading the following input: cccbcccacaaccbca?
s2
16
c3e49d4d-37d4-4760-bc2d-03f6d626f4db
f1c374a4-776c-4a4a-b271-3ef0bee18b61
{"states": ["s0", "s1", "s2"], "alphabets": "abc", "accepting_states": ["s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s1"]}]}
2
{"a":{"s0":"s2","s1":"s2","s2":"s2"},"b":{"s0":"s1","s1":"s0","s2":"s0"},"c":{"s0":"s1","s1":"s1","s2":"s1"}}
Given the following FSM: a b c s0 s2 s1 s1 s1 s2 s0 s1 s2 s2 s0 s1 Initial state: s0, and Accepting states: s2 What will be the state after reading the following input: cccbcccacaaccbcac?
s1
17
16a181ed-b9b9-4276-8b57-7315d2572f6d
f1c374a4-776c-4a4a-b271-3ef0bee18b61
{"states": ["s0", "s1", "s2"], "alphabets": "abc", "accepting_states": ["s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s1"]}]}
2
{"a":{"s0":"s2","s1":"s2","s2":"s2"},"b":{"s0":"s1","s1":"s0","s2":"s0"},"c":{"s0":"s1","s1":"s1","s2":"s1"}}
Given the following FSM: a b c s0 s2 s1 s1 s1 s2 s0 s1 s2 s2 s0 s1 Initial state: s0, and Accepting states: s2 What will be the state after reading the following input: cccbcccacaaccbcaca?
s2
18
03ab1d09-56fa-4863-823a-4f3108a553e1
f1c374a4-776c-4a4a-b271-3ef0bee18b61
{"states": ["s0", "s1", "s2"], "alphabets": "abc", "accepting_states": ["s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s1"]}]}
2
{"a":{"s0":"s2","s1":"s2","s2":"s2"},"b":{"s0":"s1","s1":"s0","s2":"s0"},"c":{"s0":"s1","s1":"s1","s2":"s1"}}
Given the following FSM: a b c s0 s2 s1 s1 s1 s2 s0 s1 s2 s2 s0 s1 Initial state: s0, and Accepting states: s2 What will be the state after reading the following input: cccbcccacaaccbcacaa?
s2
19
e11ae68b-8643-411f-8e78-251c5f09f441
f1c374a4-776c-4a4a-b271-3ef0bee18b61
{"states": ["s0", "s1", "s2"], "alphabets": "abc", "accepting_states": ["s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s1"]}]}
2
{"a":{"s0":"s2","s1":"s2","s2":"s2"},"b":{"s0":"s1","s1":"s0","s2":"s0"},"c":{"s0":"s1","s1":"s1","s2":"s1"}}
Given the following FSM: a b c s0 s2 s1 s1 s1 s2 s0 s1 s2 s2 s0 s1 Initial state: s0, and Accepting states: s2 What will be the state after reading the following input: cccbcccacaaccbcacaac?
s1
20
6311bb28-e3f5-4e15-83c8-356035696dc4
f1c374a4-776c-4a4a-b271-3ef0bee18b61
{"states": ["s0", "s1", "s2"], "alphabets": "abc", "accepting_states": ["s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s1"]}]}
2
{"a":{"s0":"s2","s1":"s2","s2":"s2"},"b":{"s0":"s1","s1":"s0","s2":"s0"},"c":{"s0":"s1","s1":"s1","s2":"s1"}}
Given the following FSM: a b c s0 s2 s1 s1 s1 s2 s0 s1 s2 s2 s0 s1 Initial state: s0, and Accepting states: s2 What will be the state after reading the following input: cccbcccacaaccbcacaaca?
s2
21
7c0a1958-2507-4e96-8de5-49a4a1a2f337
f1c374a4-776c-4a4a-b271-3ef0bee18b61
{"states": ["s0", "s1", "s2"], "alphabets": "abc", "accepting_states": ["s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s1"]}]}
2
{"a":{"s0":"s2","s1":"s2","s2":"s2"},"b":{"s0":"s1","s1":"s0","s2":"s0"},"c":{"s0":"s1","s1":"s1","s2":"s1"}}
Given the following FSM: a b c s0 s2 s1 s1 s1 s2 s0 s1 s2 s2 s0 s1 Initial state: s0, and Accepting states: s2 What will be the state after reading the following input: cccbcccacaaccbcacaacab?
s0
22
1eae2431-bbf0-4e77-ada9-9ff0c22ee91a
f1c374a4-776c-4a4a-b271-3ef0bee18b61
{"states": ["s0", "s1", "s2"], "alphabets": "abc", "accepting_states": ["s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s1"]}]}
2
{"a":{"s0":"s2","s1":"s2","s2":"s2"},"b":{"s0":"s1","s1":"s0","s2":"s0"},"c":{"s0":"s1","s1":"s1","s2":"s1"}}
Given the following FSM: a b c s0 s2 s1 s1 s1 s2 s0 s1 s2 s2 s0 s1 Initial state: s0, and Accepting states: s2 What will be the state after reading the following input: cccbcccacaaccbcacaacabc?
s1
23
cd7152b2-2a36-4d06-a24a-3cd4d81b7908
f1c374a4-776c-4a4a-b271-3ef0bee18b61
{"states": ["s0", "s1", "s2"], "alphabets": "abc", "accepting_states": ["s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s1"]}]}
2
{"a":{"s0":"s2","s1":"s2","s2":"s2"},"b":{"s0":"s1","s1":"s0","s2":"s0"},"c":{"s0":"s1","s1":"s1","s2":"s1"}}
Given the following FSM: a b c s0 s2 s1 s1 s1 s2 s0 s1 s2 s2 s0 s1 Initial state: s0, and Accepting states: s2 What will be the state after reading the following input: cccbcccacaaccbcacaacabcb?
s0
24
42c5be61-c9b9-4641-befb-0e9ee6480a82
f1c374a4-776c-4a4a-b271-3ef0bee18b61
{"states": ["s0", "s1", "s2"], "alphabets": "abc", "accepting_states": ["s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s1"]}]}
2
{"a":{"s0":"s2","s1":"s2","s2":"s2"},"b":{"s0":"s1","s1":"s0","s2":"s0"},"c":{"s0":"s1","s1":"s1","s2":"s1"}}
Given the following FSM: a b c s0 s2 s1 s1 s1 s2 s0 s1 s2 s2 s0 s1 Initial state: s0, and Accepting states: s2 What will be the state after reading the following input: cccbcccacaaccbcacaacabcbb?
s1
25
1f2b1f72-ca5e-4431-81da-fdcf33bfb9ec
f1c374a4-776c-4a4a-b271-3ef0bee18b61
{"states": ["s0", "s1", "s2"], "alphabets": "abc", "accepting_states": ["s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s1"]}]}
2
{"a":{"s0":"s2","s1":"s2","s2":"s2"},"b":{"s0":"s1","s1":"s0","s2":"s0"},"c":{"s0":"s1","s1":"s1","s2":"s1"}}
Given the following FSM: a b c s0 s2 s1 s1 s1 s2 s0 s1 s2 s2 s0 s1 Initial state: s0, and Accepting states: s2 What will be the state after reading the following input: cccbcccacaaccbcacaacabcbba?
s2
26
57b9490f-4749-45c8-b2d8-2f458a948265
f1c374a4-776c-4a4a-b271-3ef0bee18b61
{"states": ["s0", "s1", "s2"], "alphabets": "abc", "accepting_states": ["s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s1"]}]}
2
{"a":{"s0":"s2","s1":"s2","s2":"s2"},"b":{"s0":"s1","s1":"s0","s2":"s0"},"c":{"s0":"s1","s1":"s1","s2":"s1"}}
Given the following FSM: a b c s0 s2 s1 s1 s1 s2 s0 s1 s2 s2 s0 s1 Initial state: s0, and Accepting states: s2 What will be the state after reading the following input: cccbcccacaaccbcacaacabcbbac?
s1
27
3fbe341d-ae1c-4983-979b-8e76a11dc314
f1c374a4-776c-4a4a-b271-3ef0bee18b61
{"states": ["s0", "s1", "s2"], "alphabets": "abc", "accepting_states": ["s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s1"]}]}
2
{"a":{"s0":"s2","s1":"s2","s2":"s2"},"b":{"s0":"s1","s1":"s0","s2":"s0"},"c":{"s0":"s1","s1":"s1","s2":"s1"}}
Given the following FSM: a b c s0 s2 s1 s1 s1 s2 s0 s1 s2 s2 s0 s1 Initial state: s0, and Accepting states: s2 What will be the state after reading the following input: cccbcccacaaccbcacaacabcbbaca?
s2
28
1018df3d-594a-4944-b0a2-e6e14801fb86
f1c374a4-776c-4a4a-b271-3ef0bee18b61
{"states": ["s0", "s1", "s2"], "alphabets": "abc", "accepting_states": ["s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s1"]}]}
2
{"a":{"s0":"s2","s1":"s2","s2":"s2"},"b":{"s0":"s1","s1":"s0","s2":"s0"},"c":{"s0":"s1","s1":"s1","s2":"s1"}}
Given the following FSM: a b c s0 s2 s1 s1 s1 s2 s0 s1 s2 s2 s0 s1 Initial state: s0, and Accepting states: s2 What will be the state after reading the following input: cccbcccacaaccbcacaacabcbbacaa?
s2
29
4159c7b8-74fa-46b3-b36a-2316f162722a
9a9989ab-2c02-405e-a867-796e18800225
{"states": ["s0", "s1", "s2", "s3", "s4", "s5", "s6"], "alphabets": "abc", "accepting_states": ["s6"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s5"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s4"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s4", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s4", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s6"]}, {"fromState": "s5", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s5", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s6", "symbol": "a", "toStates": ["s5"]}, {"fromState": "s6", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s6", "symbol": "c", "toStates": ["s3"]}]}
3
{"a":{"s0":"s4","s1":"s2","s2":"s3","s3":"s3","s4":"s4","s5":"s6","s6":"s5"},"b":{"s0":"s5","s1":"s6","s2":"s2","s3":"s1","s4":"s2","s5":"s2","s6":"s6"},"c":{"s0":"s1","s1":"s4","s2":"s3","s3":"s0","s4":"s3","s5":"s1","s6":"s3"}}
Given the following FSM: a b c s0 s4 s5 s1 s1 s2 s6 s4 s2 s3 s2 s3 s3 s3 s1 s0 s4 s4 s2 s3 s5 s6 s2 s1 s6 s5 s6 s3 Initial state: s0, and Accepting states: s6 What will be the state after reading the following input: a?
s4
1
1a2d9b95-4210-4e60-b206-fa3723b625c7
9a9989ab-2c02-405e-a867-796e18800225
{"states": ["s0", "s1", "s2", "s3", "s4", "s5", "s6"], "alphabets": "abc", "accepting_states": ["s6"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s5"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s4"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s4", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s4", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s6"]}, {"fromState": "s5", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s5", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s6", "symbol": "a", "toStates": ["s5"]}, {"fromState": "s6", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s6", "symbol": "c", "toStates": ["s3"]}]}
3
{"a":{"s0":"s4","s1":"s2","s2":"s3","s3":"s3","s4":"s4","s5":"s6","s6":"s5"},"b":{"s0":"s5","s1":"s6","s2":"s2","s3":"s1","s4":"s2","s5":"s2","s6":"s6"},"c":{"s0":"s1","s1":"s4","s2":"s3","s3":"s0","s4":"s3","s5":"s1","s6":"s3"}}
Given the following FSM: a b c s0 s4 s5 s1 s1 s2 s6 s4 s2 s3 s2 s3 s3 s3 s1 s0 s4 s4 s2 s3 s5 s6 s2 s1 s6 s5 s6 s3 Initial state: s0, and Accepting states: s6 What will be the state after reading the following input: ac?
s3
2
044927de-f5f5-49af-8fc6-194b12568ca0
9a9989ab-2c02-405e-a867-796e18800225
{"states": ["s0", "s1", "s2", "s3", "s4", "s5", "s6"], "alphabets": "abc", "accepting_states": ["s6"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s5"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s4"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s4", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s4", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s6"]}, {"fromState": "s5", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s5", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s6", "symbol": "a", "toStates": ["s5"]}, {"fromState": "s6", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s6", "symbol": "c", "toStates": ["s3"]}]}
3
{"a":{"s0":"s4","s1":"s2","s2":"s3","s3":"s3","s4":"s4","s5":"s6","s6":"s5"},"b":{"s0":"s5","s1":"s6","s2":"s2","s3":"s1","s4":"s2","s5":"s2","s6":"s6"},"c":{"s0":"s1","s1":"s4","s2":"s3","s3":"s0","s4":"s3","s5":"s1","s6":"s3"}}
Given the following FSM: a b c s0 s4 s5 s1 s1 s2 s6 s4 s2 s3 s2 s3 s3 s3 s1 s0 s4 s4 s2 s3 s5 s6 s2 s1 s6 s5 s6 s3 Initial state: s0, and Accepting states: s6 What will be the state after reading the following input: acc?
s0
3
3609e7b6-3fe3-4657-a532-6682922e24ac
9a9989ab-2c02-405e-a867-796e18800225
{"states": ["s0", "s1", "s2", "s3", "s4", "s5", "s6"], "alphabets": "abc", "accepting_states": ["s6"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s5"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s4"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s4", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s4", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s6"]}, {"fromState": "s5", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s5", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s6", "symbol": "a", "toStates": ["s5"]}, {"fromState": "s6", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s6", "symbol": "c", "toStates": ["s3"]}]}
3
{"a":{"s0":"s4","s1":"s2","s2":"s3","s3":"s3","s4":"s4","s5":"s6","s6":"s5"},"b":{"s0":"s5","s1":"s6","s2":"s2","s3":"s1","s4":"s2","s5":"s2","s6":"s6"},"c":{"s0":"s1","s1":"s4","s2":"s3","s3":"s0","s4":"s3","s5":"s1","s6":"s3"}}
Given the following FSM: a b c s0 s4 s5 s1 s1 s2 s6 s4 s2 s3 s2 s3 s3 s3 s1 s0 s4 s4 s2 s3 s5 s6 s2 s1 s6 s5 s6 s3 Initial state: s0, and Accepting states: s6 What will be the state after reading the following input: accb?
s5
4
6bf740f8-d0dc-4a67-924f-8978bdc58700
9a9989ab-2c02-405e-a867-796e18800225
{"states": ["s0", "s1", "s2", "s3", "s4", "s5", "s6"], "alphabets": "abc", "accepting_states": ["s6"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s5"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s4"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s4", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s4", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s6"]}, {"fromState": "s5", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s5", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s6", "symbol": "a", "toStates": ["s5"]}, {"fromState": "s6", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s6", "symbol": "c", "toStates": ["s3"]}]}
3
{"a":{"s0":"s4","s1":"s2","s2":"s3","s3":"s3","s4":"s4","s5":"s6","s6":"s5"},"b":{"s0":"s5","s1":"s6","s2":"s2","s3":"s1","s4":"s2","s5":"s2","s6":"s6"},"c":{"s0":"s1","s1":"s4","s2":"s3","s3":"s0","s4":"s3","s5":"s1","s6":"s3"}}
Given the following FSM: a b c s0 s4 s5 s1 s1 s2 s6 s4 s2 s3 s2 s3 s3 s3 s1 s0 s4 s4 s2 s3 s5 s6 s2 s1 s6 s5 s6 s3 Initial state: s0, and Accepting states: s6 What will be the state after reading the following input: accbc?
s1
5
a643708a-e4d5-4adb-99fd-37839c68f2b3
9a9989ab-2c02-405e-a867-796e18800225
{"states": ["s0", "s1", "s2", "s3", "s4", "s5", "s6"], "alphabets": "abc", "accepting_states": ["s6"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s5"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s4"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s4", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s4", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s6"]}, {"fromState": "s5", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s5", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s6", "symbol": "a", "toStates": ["s5"]}, {"fromState": "s6", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s6", "symbol": "c", "toStates": ["s3"]}]}
3
{"a":{"s0":"s4","s1":"s2","s2":"s3","s3":"s3","s4":"s4","s5":"s6","s6":"s5"},"b":{"s0":"s5","s1":"s6","s2":"s2","s3":"s1","s4":"s2","s5":"s2","s6":"s6"},"c":{"s0":"s1","s1":"s4","s2":"s3","s3":"s0","s4":"s3","s5":"s1","s6":"s3"}}
Given the following FSM: a b c s0 s4 s5 s1 s1 s2 s6 s4 s2 s3 s2 s3 s3 s3 s1 s0 s4 s4 s2 s3 s5 s6 s2 s1 s6 s5 s6 s3 Initial state: s0, and Accepting states: s6 What will be the state after reading the following input: accbcc?
s4
6
a80cb9ff-8a54-40c8-8808-7ab8dd1e6717
9a9989ab-2c02-405e-a867-796e18800225
{"states": ["s0", "s1", "s2", "s3", "s4", "s5", "s6"], "alphabets": "abc", "accepting_states": ["s6"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s5"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s4"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s4", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s4", "symbol": "c", "toStates": ["s3"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s6"]}, {"fromState": "s5", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s5", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s6", "symbol": "a", "toStates": ["s5"]}, {"fromState": "s6", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s6", "symbol": "c", "toStates": ["s3"]}]}
3
{"a":{"s0":"s4","s1":"s2","s2":"s3","s3":"s3","s4":"s4","s5":"s6","s6":"s5"},"b":{"s0":"s5","s1":"s6","s2":"s2","s3":"s1","s4":"s2","s5":"s2","s6":"s6"},"c":{"s0":"s1","s1":"s4","s2":"s3","s3":"s0","s4":"s3","s5":"s1","s6":"s3"}}
Given the following FSM: a b c s0 s4 s5 s1 s1 s2 s6 s4 s2 s3 s2 s3 s3 s3 s1 s0 s4 s4 s2 s3 s5 s6 s2 s1 s6 s5 s6 s3 Initial state: s0, and Accepting states: s6 What will be the state after reading the following input: accbccb?
s2
7