-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path9.cpp
More file actions
71 lines (66 loc) · 893 Bytes
/
9.cpp
File metadata and controls
71 lines (66 loc) · 893 Bytes
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
67
68
69
70
//https://www.hackerearth.com/practice/data-structures/arrays/1-d/practice-problems/algorithm/range-query-2/
#include<iostream>
using namespace std;
int binaryConv(int* arr,int s,int e)
{
int num = 1;
int sum = 0;
for (int i=e-1;i>=s-1;i--)
{
if (arr[i]==1)
{
sum = num+sum;
}
num = num*2;
}
if (sum%2==1)
{
return 1;
}
else
{
return 0;
}
}
int main()
{
int n,q;
int a[n];
cin>>n;
cin>>q;
for (int i=0;i<n;i++)
{
cin>>a[i];
}
int querry;
for (int i=0;i<q;i++)
{
cin>>querry;
if (querry==1)
{
cin>>querry;
if (a[querry-1]==1)
{
a[querry-1]==0;
}
else
{
a[querry-1]==1;
}
}
else
{
int s,e;
cin>>s>>e;
s=binaryConv(a,s,e);
if (s==1)
{
cout<<"ODD";
}
else
{
cout<<"EVEN";
}
}
}
}