pku3618 Exploration

//pku3618 Exploration #include #include #include using namespace std; typedef long INT32; struct AbsGreater { bool operator() (const INT32& left, const INT32& right) const { return abs(left) < abs(right); } }; const INT32 MAX_N = 50000; INT32 dist[MAX_N]; INT32 nDist = 0; int main() { INT32 iT, iN; INT32 n; scanf("%ld %ld", &iT, &iN); for (n=0; n

你可能感兴趣的:(ACM,struct)