my

struct node{
    int x,y;
    int id;
    bool operator <(const node p){
        if(x==p.x) return y<p.y;
        return x<p.x;
    }
}arr[N*3];

猜你喜欢

转载自www.cnblogs.com/Y292/p/9572271.html
my