Codeforces Round #501 (Div. 3) 题解 2018-7-31 17:37 | 4,330 | 0 | C++,CodeForces,算法 | Ryan 877 字 | 16 分钟 Problem A Points in Segments 题意 给你若干个区间,以及区间大小n,问你在区间$$[1,n]$$内没有被覆盖的点有哪些。 题解 乱搞,范围不大 #include <iostream> #include <algorithm> #include <cstring> #include &l…