struct Node
{
int p, n;
bool operator < (Node t) const
{
return p > t.p;
}
}e[25];
©著作权归作者所有