题解 2594: 蓝桥杯2020年第十一届国赛真题-答疑

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

贪心求最小值 排序

摘要:# 注意排序性 先排每组元素总和,若相等根据每组前两个元素和,确定大小次序 ``` #include #include using namespace std; const int N……

短作业优先-答疑

摘要:```cpp #include using namespace std; typedef long long ll; const int N=1e3+5; int n; struct no……

c++ 详细题解

摘要:解题思路:假设每一组输入分别为ai1 ,ai2 ,bi ,     Ai=ai1+ai2(每一组的时间总和减去离开教室的时间) ,     Ki=Ai+bi=ai1+ai2+bi(每一组的时间总和) ……