求大佬告诉我为什么错了?明明能做出来啊!(C语言) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,m,i,j,k,y=0,t=0,sum=0; int a[1010]={0},b[1010]={0}…… 题解列表 2019年03月12日 0 点赞 1 评论 363 浏览 评分: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
打水问题-题解(解法比较便于理解) 摘要:分析:这道题可以换一个角度去看(突发奇想。。。) 拿样例给出的数据来说 7 3 3 6 1 4 2 5 7 最佳发案为: 1号水龙头:1 4 7 2号水龙头:2 5 3号水龙头:3 …… 题解列表 2021年01月28日 0 点赞 0 评论 365 浏览 评分:0.0
蓝桥杯打水问题 水题 摘要:直接上代码 ```cpp #include #include using namespace std; int main() { int n,r,t[1001]; int …… 题解列表 2019年09月20日 0 点赞 0 评论 393 浏览 评分:0.0
题解 1523: 蓝桥杯算法提高VIP-打水问题(JAVA+贪心) 摘要:#### 贪心策略 给所有取水人员编号为 0 ~ n-1, 水龙头编号为 0 ~ t-1,对所有人的取水时间按从小到大排序,然后从 0 号人员开始,依次安排到对应的水龙头(即 count % t)…… 题解列表 2022年02月03日 0 点赞 0 评论 263 浏览 评分:0.0
蓝桥杯算法提高VIP-打水问题 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int k,i,j=1,N,M,Ti[1001]={0},gai[1001],ALL=0;scanf("%d %…… 题解列表 2018年03月05日 0 点赞 0 评论 884 浏览 评分:0.0
蓝桥杯算法提高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