-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy path647. Palindromic Substrings.cpp
50 lines (46 loc) · 1.09 KB
/
647. Palindromic Substrings.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
/*
____ _ _ _ _ __ __ _ _ _
| _ \(_)___| |__ __ _| |__ | |__ | \/ | __ _| | |__ ___ | |_ _ __ __ _
| |_) | / __| '_ \ / _` | '_ \| '_ \ | |\/| |/ _` | | '_ \ / _ \| __| '__/ _` |
| _ <| \__ \ | | | (_| | |_) | | | | | | | | (_| | | | | | (_) | |_| | | (_| |
|_| \_\_|___/_| |_|\__,_|_.__/|_| |_| |_| |_|\__,_|_|_| |_|\___/ \__|_| \__,_|
*/
#include <bits/stdc++.h>
using namespace std;
class Solution
{
public:
int countSubstrings(string s)
{
int n = s.size(), count = 0;
vector<vector<int>> dp(n, vector<int>(n, 0));
for (int gap = 0; gap < n; gap++)
{
for (int i = 0, j = gap; j < n; i++, j++)
{
if (gap == 0)
{
count++;
dp[i][j] = 1;
}
else if (gap == 1)
{
if (s[i] == s[j])
{
dp[i][j] = 1;
count++;
}
}
else
{
if (s[i] == s[j] && dp[i + 1][j - 1] == 1)
{
dp[i][j] = 1;
count++;
}
}
}
}
return count;
}
};