按结束时间排序,只要不和前面的电影冲突就选择看这个电影,因为是按结束时间排序,所以结束的越早剩下时间越多,就可以选泽更多的电影,满足本题目的需求 #include<cstdio> #include<algorithm> using namespace std; struct t { long long a,e;//a是开始时间,e是结束时间 }; struct q { bool op...