struct Node
{
    int p, n;
    bool operator < (Node t) const
    {
        return p > t.p;
    }
}e[25];

发表评论