-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1630. Arithmetic Subarrays.cpp
66 lines (55 loc) · 1.47 KB
/
1630. Arithmetic Subarrays.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
55
56
57
58
59
60
61
62
63
64
65
66
// Time complexity - O(M*NlogN)
// Space complexity- O(N)
class Solution {
public:
vector<bool> checkArithmeticSubarrays(vector<int>& nums, vector<int>& l, vector<int>& r)
{
vector<bool> ans;
int n=nums.size();
int m=l.size();
for(int i=0;i<m;i++)
{
int s=l[i];
int e=r[i];
//if range consist less than 1 element
if((e-s)<=1)
{
ans.push_back(1);
continue;
}
priority_queue<int> pq;
int pre;
for(int j=s;j<=e;j++)
pq.push(nums[j]);
pre=pq.top();
pq.pop();
int d=0;
bool flag=1;
bool done=1;
while(!pq.empty())
{
int f=pq.top();
pq.pop();
int diff=pre-f;
pre=f;
if(flag)
{
d=diff;
flag=0;
}
else
{
if(diff!=d)
{
ans.push_back(0);
done=0;
break;
}
}
}
if(done)
ans.push_back(1);
}
return ans;
}
};