-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path10147.cpp
142 lines (132 loc) · 2.52 KB
/
10147.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
130
131
132
133
134
135
136
/**
* @author : Maruf Tuhin
* @School : CUET CSE 11
* @Topcoder : the_redback
* @CodeForces : the_redback
* @UVA : Redback
* @link : http://www.fb.com/maruf.2hin
*/
#include<cstdio>
#include<cstring>
#include<cstdlib>
#include<cctype>
#include<cmath>
#include<iostream>
#include<fstream>
#include<string>
#include<vector>
#include<queue>
#include<map>
#include<algorithm>
#include<set>
#include<sstream>
#include<stack>
using namespace std;
#define inf 10000000
#define mem(a,b) memset(a,b,sizeof(a))
#define NN 800
struct edge
{
int u,v;
double w;
};
struct node
{
double x,y;
};
struct point
{
int x,y;
};
node a[NN+7];
int pr[NN+7];
vector<edge>e;
vector<point>V;
int Flag;
bool compoint(point n,point m)
{
if(n.x==m.x)
return n.y<m.y;
return n.x<m.x;
}
bool comp(edge n,edge m)
{
return n.w<m.w;
}
int root(int n)
{
if(pr[n]==n)
return n;
return root(pr[n]);
}
void mst(int n)
{
int i,j,k;
for(i=0; i<=n; i++)
pr[i]=i;
sort(e.begin(),e.end(),comp);
int count=0;
double sum=0;
for(i=0; i<e.size() && count<n-1; i++)
{
int u=root(e[i].u);
int v=root(e[i].v);
if(u!=v)
{
pr[u]=v;
count++;
if(e[i].w!=0)
printf("%d %d\n",e[i].u,e[i].v),Flag=0;
}
}
return;
}
main()
{
//freopen("C:\\Users\\Maruf Tuhin\\Desktop\\in.txt","r",stdin);
//ios_base::sync_with_stdio(false);
int i,j,k,l,n,r,c,u,v,w;
edge ed;
node nd;
point pn;
int tc,t=1,m;
double x;
scanf("%d",&tc);
while(tc--)
{
scanf("%d",&n);
for(i=1;i<=n;i++)
scanf("%lf%lf",&a[i].x,&a[i].y);
scanf("%d",&r);
while(r--)
{
scanf("%d%d",&u,&v);
pn.x=min(u,v);
pn.y=max(u,v);
V.push_back(pn);
}
sort(V.begin(),V.end(),compoint);
r=0;
for(i=1;i<=n;i++)
for(j=i+1;j<=n;j++)
{
if(r<V.size() && V[r].x==i && V[r].y==j)
x=0,r++;
else
x=sqrt(((a[i].x-a[j].x)*(a[i].x-a[j].x))+((a[i].y-a[j].y)*(a[i].y-a[j].y)));
ed.u=i;
ed.v=j;
ed.w=x;
e.push_back(ed);
}
Flag=1;
mst(n);
if(Flag)
puts("No new highways need");
if(tc)
puts("");
e.clear();
V.clear();
}
return 0;
}