-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProblem_1450B.cpp
74 lines (57 loc) · 1.4 KB
/
Problem_1450B.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
#include <bits/stdc++.h>
using namespace std;
// bool isSubSequence(string str1, string str2, int m, int n)
// {
// if (m == 0)
// return true;
// if (n == 0)
// return false;
// if (str1[m - 1] == str2[n - 1])
// return isSubSequence(str1, str2, m - 1, n - 1);
// return isSubSequence(str1, str2, m, n - 1);
// }
int main(int argc, char const *argv[])
{
ios_base::sync_with_stdio(false);
cin.tie(0);
int t;
cin >> t;
while (t--)
{
int n,k,x,y;
cin>>n>>k;
vector<int>xi,yi;
for (int i = 0; i < n; i++)
{
cin>>x>>y;
xi.push_back(x);
yi.push_back(y);
}
for (int i = 0; i < n; i++)
{
for(int j = 0;j<n;j++){
if (abs(xi[i] - xi[j]) + abs(yi[i] - yi[j]) <= k){
xi[j] = xi[i];
yi[j] = yi[i];
continue;
}
}
}
int yes = 0;
for (int i = 0; i < n; i++)
{
for(int j = i+1;j<n;j++){
if(xi[i] == xi[j] || yi[i] == yi[j]){
yes++;
}
}
}
if(yes == n){
cout<<"1"<<"\n";
}else
{
cout<<"-1"<<"\n";
}
}
return 0;
}