只做记录,基本借鉴别人 摘要:解题思路: 要将三个水龙头的等待时间分别累加起来注意事项:参考代码:#include<bits/stdc++.h> using namespace std; int main()…… 题解列表 2024年03月14日 0 点赞 0 评论 92 浏览 评分:0.0
桶排序思想 求解打水问题 摘要:解题思路:首先我们先把每个人打水时间从小到大排序 其次确定每只水龙头最多可以有多少人排队 依次把这些从小到大的时间放到每个水龙头。注意事项: 计算每个水龙头的等待时间,最后一个人的不用加,其次第三…… 题解列表 2023年03月16日 0 点赞 0 评论 65 浏览 评分:0.0
1523: 蓝桥杯算法提高VIP-打水问题 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<algorithm>using namespace std;int n, m, a[1010], b[1010][1…… 题解列表 2022年03月31日 0 点赞 0 评论 266 浏览 评分:0.0
打水解题,简单快捷(c++) 摘要:解题思路: 易知最后的M个人的打水时间是无人等待的,即无需参与运算,只需计算N-M个人的等待时间。从等待时间较大的开始算起,将N个人分为M组,每组有M/N个人,余出人数按从小到大逐个放入这M组中,并…… 题解列表 2021年05月09日 0 点赞 0 评论 335 浏览 评分:8.0
打水问题-题解(解法比较便于理解) 摘要:分析:这道题可以换一个角度去看(突发奇想。。。) 拿样例给出的数据来说 7 3 3 6 1 4 2 5 7 最佳发案为: 1号水龙头:1 4 7 2号水龙头:2 5 3号水龙头:3 …… 题解列表 2021年01月28日 0 点赞 0 评论 355 浏览 评分:0.0
蓝桥杯算法提高VIP-打水问题-题解(C++代码)--极简笔记 摘要:解题思路: 1523 1527 类似注意事项:参考代码:#includeusing namespace std; int a[10000]; //打水人时间 int b[10000]; …… 题解列表 2020年07月24日 0 点赞 0 评论 333 浏览 评分:9.9
蓝桥杯算法提高VIP-打水问题-题解(C++代码) 摘要:解题思路:思路题目给出来了,照着写就完事了参考代码:#include"iostream" #include"algorithm" using namespace std; int ans[100…… 题解列表 2020年07月08日 0 点赞 0 评论 195 浏览 评分:0.0
蓝桥杯算法提高VIP-打水问题-题解(C++代码) 摘要:``` #include #include using namespace std; int n,m; int a[1005]; int lt[1005][1005]; int …… 题解列表 2020年06月21日 0 点赞 0 评论 275 浏览 评分:0.0
蓝桥杯算法提高VIP-打水问题-题解(C++代码) 摘要:```cpp #include using namespace std; int a[1234]; int main(){ int n,m;cin>>n>>m; …… 题解列表 2020年04月12日 0 点赞 0 评论 411 浏览 评分:9.9
蓝桥杯算法提高VIP-打水问题-题解(C++代码) 贼短 摘要:```cpp #include #include #include using namespace std; int main(){ int n,m,x,sum=0; vector …… 题解列表 2020年03月15日 0 点赞 1 评论 410 浏览 评分:8.0