forked from doocs/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSolution.cpp
54 lines (47 loc) · 1.38 KB
/
Solution.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
class Solution {
private:
inline string Check(string &s, int widths[])
{
widths[1] += widths[0] ;
widths[2] += widths[1] ;
widths[3] = s.length() - widths[2] ;
if (widths[3] < 1 || widths[3] > 3 )
return "" ;
widths[3] = s.length() ;
for (int seg = 0; seg < 4; ++seg)
{
int num = 0 ;
for (int i = (seg == 0? 0: widths[seg-1]); i < widths[seg]; ++i)
{
num *= 10 ;
num += s[i] - '0' ;
}
if (num > 255)
return "" ;
int w = widths[seg] - (seg == 0? 0: widths[seg-1]) ;
if (w == 3 && num < 100)
return "" ;
if (w == 2 && num < 10)
return "" ;
}
string res = s ;
for (int i = 2; i >= 0; --i)
res.insert(widths[i], ".") ;
return res ;
}
public:
vector<string> restoreIpAddresses(string s) {
int widths[4] ;
vector<string> res ;
for (int i = 0; i < 27; ++i)
{
widths[0] = 1 + i%3 ;
widths[1] = 1 + i/3%3 ;
widths[2] = 1 + i/9 ;
string tmp = Check(s, widths) ;
if (tmp.size() != 0)
res.push_back(tmp) ;
}
return res;
}
};