时间限制: 1 s
题目描述
背景:suntian正准备将飞翔带回圣殿,不料一声巨响,suntian的三维时空被飞翔炸开,飞翔再次出现在suntian面前,两人同时出手……随着两人昏天暗地的打斗,时空开始扭曲并产生波动,影响了suntian施咒,然而就是这一下,飞翔抓住了时机,释放巨大的能量将suntian送入了一个扭曲的四维时空……
描述:为了快一点追到飞翔,suntian希望在最短的时间内逃出这个四维时空。
他马上集中精力,在0.0000000000000001ms之内找到了这个时空的奇点。令他吃惊的是,这个空间竟然有n个奇点!这让suntian摸不着头脑。但作为圣殿战士,suntian也不是吃素的,他在冥思苦想之后得出了一个结论:只有在某个奇点处用咒术将其他n-1个奇点拉到这个奇点,才能将奇点打开。但是,将奇点拉拽到另一个奇点耗费的能量不同。能量W为:trunc(sqrt((x1-x2)^2+(y1-y2)^2+(z1-z2)^2))+abs(t1-t2) Tas。奇点拉在一起将被合并,suntian可以先把某些奇点合并再拉到他所处的奇点。为了抓捕到飞翔,suntian想用最少的能量来打开奇点,但是suntian能量已经所剩不多了。那么,suntian能否逃脱呢?
输入描述
第一行,为n(0。
第2至n+1行,为每行的坐标x,y,z,t(0<=10^4,x,y,z,t∈N)。
输出描述
共一行。
样例输入
5
1 1 1 1
1 1 1 2
2 2 2 2
3 3 3 3
3 3 3 4
5Tas
样例输出
5Tas
代码:
#include
using namespace std;
#include
#include
#include
#include
#include//trunc ==floor
#define maxn 1001//ji dian shu
struct Point{
};
Point point[maxn];
long long l,tot,k=0;
int t=0;
struct Edge{
};
Edge edge[maxn*maxn];
int n,father[maxn];
void input();
void kruskal();
void turn1();
int main()
{
}
int cmp(const Edge &a,const Edge &b)
{
}
int find(int x)
{
}
void unionn(int a,int b)
{
}
void kruskal()
{
}
void input()
{
}
void turn1()
{
}