python-打水问题 摘要:解题思路:注意事项:参考代码:def f(n,m): A = [int(i) for i in input().strip().split()] A.sort() …… 题解列表 2022年02月24日 0 点赞 0 评论 378 浏览 评分:9.9
蓝桥杯算法提高VIP-打水问题(Python) 摘要:解题思路:注意事项:参考代码:N,M=map(int,input().split()) a=list(map(int,input().split())) a.sort() water=[[0 f…… 题解列表 2022年03月24日 0 点赞 0 评论 149 浏览 评分:0.0
1523: 蓝桥杯算法提高VIP-打水问题 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<algorithm>using namespace std;int n, m, a[1010], b[1010][1…… 题解列表 2022年03月31日 0 点赞 0 评论 270 浏览 评分:0.0
蓝桥杯算法提高VIP-打水问题 摘要:解题思路:注意事项:参考代码:import java.util.Arrays; import java.util.Scanner; public class Main { publi…… 题解列表 2022年11月01日 0 点赞 0 评论 119 浏览 评分:0.0
桶排序思想 求解打水问题 摘要:解题思路:首先我们先把每个人打水时间从小到大排序 其次确定每只水龙头最多可以有多少人排队 依次把这些从小到大的时间放到每个水龙头。注意事项: 计算每个水龙头的等待时间,最后一个人的不用加,其次第三…… 题解列表 2023年03月16日 0 点赞 0 评论 75 浏览 评分:0.0
取模,保存上一个打水人时间即可 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n,m; cin>>n>>m; int …… 题解列表 2024年02月12日 0 点赞 0 评论 80 浏览 评分:0.0
只做记录,基本借鉴别人 摘要:解题思路: 要将三个水龙头的等待时间分别累加起来注意事项:参考代码:#include<bits/stdc++.h> using namespace std; int main()…… 题解列表 2024年03月14日 0 点赞 0 评论 97 浏览 评分:0.0