-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchef_CRAWA.cpp
129 lines (96 loc) · 1.77 KB
/
chef_CRAWA.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
#include<iostream>
#include<stdio.h>
#include<math.h>
#include<stdlib.h>
using namespace std;
int main()
{
int T,x_co,y_co,i,j,tempx,tempy,X,Y,flag2,flag1,indexi,indexy,lower,upper,min,max,tempo;/// these represent the point to be checked... entered by user
scanf("%d",&T);
while(T--)
{ X=0;Y=0;flag1=-1;flag2=-1;
scanf("%d%d",&x_co,&y_co);
tempx=abs(x_co); tempy=abs(y_co);
for(i=1;X<=tempx;i++)
{
if(x_co==X)
{
flag1=5;
flag2=-1;indexi=i-1;
break;
}
if(i%2!=0) // i represents the iteration of variation of coordinate of x
{
X=i;
}
else if(i%2==0)
{
X=-i;
}
}
for(j=1;Y<=tempy;j++)
{
if(y_co==Y)
{
flag2=5;flag1=-1;indexy=j-1;
break;
}
if(j%2==0)
{
Y=-j;
}
else if(j%2!=0)
{
Y=j+1;
}
}
if(flag1==-1 && flag2==-1)
{
printf("NO\n");
}
else
if(flag1==5 && flag2==5)
{
printf("YES\n");
}
else
if(flag1==5 && flag2==-1)
{
if(indexi%2==0)
{lower=indexi; upper=-indexi;}
if(indexi%2!=0)
{ lower=-indexi+1; upper=indexi+1;}
min=lower;max=upper;
if(upper<lower)
{
tempo=max;
max=min;
min=tempo;
}
if(y_co>=lower && y_co<=upper)
printf("YES\n");
else
if(y_co<lower || y_co>upper)
printf("NO\n");
}
if(flag2==5 && flag1==-1)
{
if(indexy%2==0)
{lower=-indexy; upper=indexy+1;}
if(indexy%2!=0)
{ lower=indexy; upper=-indexy-1;}
min=lower;max=upper;
if(upper<lower)
{
tempo=max;
max=min;
min=tempo;
}
if(x_co>=lower && x_co<=upper)
printf("YES\n");
else
if(x_co<lower || x_co>upper)
printf("NO\n");
}
}
}