UVALive 3662 Another Minimum Spanning Tree [离散化+线段树+最小生成树]

题意:给出N个点的平面坐标,求解曼哈顿距离意义上的最小生成树。

范围:N<=10W 点的坐标是<=10的7次的 非负整数。

解法:模板题,直接套即可,代码注释的很详细了,可以参考文库里的 曼哈顿最小生成树。

代码:

#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#pragma comment(linker, "/STACK:1024000000,1024000000")
template 
bool scanff(T &ret){ //Faster Input
    char c; int sgn; T bit=0.1;
    if(c=getchar(),c==EOF) return 0;
    while(c!='-'&&c!='.'&&(c<'0'||c>'9')) c=getchar();
    sgn=(c=='-')?-1:1;
    ret=(c=='-')?0:(c-'0');
    while(c=getchar(),c>='0'&&c<='9') ret=ret*10+(c-'0');
    if(c==' '||c=='\n'){ ret*=sgn; return 1; }
    while(c=getchar(),c>='0'&&c<='9') ret+=(c-'0')*bit,bit/=10;
    ret*=sgn;
    return 1;
}
#define inf 1073741823
#define llinf 4611686018427387903LL
#define PI acos(-1.0)
#define lth (th<<1)
#define rth (th<<1|1)
#define rep(i,a,b) for(int i=a;i<=b;i++)
#define drep(i,a,b) for(int i=a;i>=b;i--)
#define gson(i,root) for(int i=ptx[root];~i;i=ed[i].next)
#define tdata int testnum;scanff(testnum);for(int cas=1;cas<=testnum;cas++)
#define mem(x,val) memset(x,val,sizeof(x))
#define mkp(a,b) make_pair(a,b)
#define findx(x) lower_bound(b+1,b+1+bn,x)-b
#define pb(x) push_back(x)
using namespace std;
typedef long long ll;
typedef pair pii;
const int NN =100100;



int n,m,k,b[NN],bn,dn;//b[]用于y-x的离散化
struct point{
    int x,y,idx;
    bool operator < (const point temp)const{//x从小往大排,相同时y从小至大
        if(x!=temp.x)return x0;i>>=1){
        if(val>=1,r>>=1){
        if(~l&1)if(t[l^1].val


你可能感兴趣的:(图论--最小生成树)