摘要:
#include<iostream> #include<stdio.h> #include<math.h> #include<algorithm> using namespace std; int main() { int n; while(~scanf("%d",&n)&&n!=0) { int 阅读全文
摘要:
struct Node { int d, e; bool operator < (const Node x) const { return x.d < d; } Node(int d, int e):d(d), e(e){} }; 阅读全文