forked from Nanduag0/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathArithmetic_Easier_Solution_using_dp.txt
63 lines (60 loc) · 1.5 KB
/
Arithmetic_Easier_Solution_using_dp.txt
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
55
56
57
58
59
60
61
62
63
class Solution {
public:
int numberOfArithmeticSlices(vector<int>& A)
{
if(A.size()<3)
return 0;
int dp[A.size()];
memset(dp,0,sizeof(dp));
dp[0]=0;
dp[1]=0;
int sum=0;
for(int i=2;i<A.size();i++)
{
if(A[i]-A[i-1]==A[i-1]-A[i-2])
{
dp[i]=dp[i-1]+1;
sum+=dp[i];
}
}
return sum;
////SUPER FUCKING !!!!!!!
// if(A.size()<3)
// return 0;
// int k=3;
// int count=0,tar=0,flag=0;
// vector<int> ans;
// while(k<=A.size())
// {
// tar=0;
// flag=0;
// for(int i=0;i<A.size();i++)
// {
// if(A.size()-i<k)
// {
// tar=1;
// break;
// }
// for(int j=i;j+2<(k+i);j++)
// {
// if((A[j+1]-A[j]) == (A[j+2]-A[j+1]))
// {
// flag=1;
// }
// else
// {
// flag=0;
// break;
// }
// }
// if(flag==1)
// {
// count++;
// }
// flag=0;
// }
// k++;
// }
// return count;
}
};