Alphabet ${} = \{0,1\}$.
Language $L = \{ w \in \{0,1\}^* \mid \text{ number of $0$'s in $w$ is even and after every $1$ goes $0$} \}$.
I'm trying to create DFA that accepts language $L$. But I have some problems. Transition arrow with $1$ can only lead to the same state is goes from. But when it happens this state can not be final state. If arrow with $1$ goes to another state, then word can contain $11$ so this DFA would not accept this language. Probably I think in incorrect way? Can you give some advice how to create DFA that will accept language $L$?