1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
| class Automaton { string state = "start"; unordered_map<string, vector<string>> table = { {"start", {"start", "signed", "in_number", "end"}}, {"signed", {"end", "end", "in_number", "end"}}, {"in_number", {"end", "end", "in_number", "end"}}, {"end", {"end", "end", "end", "end"}} };
int get_col(char c) { if (isspace(c)) return 0; if (c == '+' or c == '-') return 1; if (isdigit(c)) return 2; return 3; } public: int sign = 1; long long ans = 0;
void get(char c) { state = table[state][get_col(c)]; if (state == "in_number") { ans = ans * 10 + c - '0'; ans = sign == 1 ? min(ans, (long long)INT_MAX) : min(ans, -(long long)INT_MIN); } else if (state == "signed") sign = c == '+' ? 1 : -1; } };
class Solution { public: int myAtoi(string str) { Automaton automaton; for (char c : str) automaton.get(c); return automaton.sign * automaton.ans; } };
|