题解 1527: 蓝桥杯算法提高VIP-排队打水问题

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

筛选

排队打水问题贪心求解

摘要:解题思路:注意事项:参考代码:#include<iostream> #include<algorithm> using namespace std; const int N = 510; in……

排队打水问题

摘要:解题思路:注意事项:参考代码:n,r = map(int,input().split())L = list(map(int,input().split()))L.sort()s = sum([i fo……

注意时间要求

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int ti[501];//n个人打水的时间,下标从1开始int   wat[100……