Codeforces 46D Parking Lot(贪心模拟) Codeforces 46D Parking Lot
Codeforces 46D Parking Lot题目链接开线段树专题开出了这题。。看似要用区间合并求连续最大区间,其实不需要。因为询问才100个,直接set暴力去模拟即可,每次车进来就从左往右找到一个合适位置代码:#include #include #include using namespace std;const int N = 100005;i