摘要: 题解 第一题:水 #include<bits/stdc++.h> using namespace std; const int M = 1e5 + 5; struct Node{ int s, t; }p[M]; bool cmp(Node A, Node B){ return A.t > B.t; 阅读全文
posted @ 2018-09-14 20:05 Ed_Sheeran 阅读(137) 评论(0) 推荐(0)