取模,保存上一个打水人时间即可 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n,m; cin>>n>>m; int …… 题解列表 2024年02月12日 0 点赞 0 评论 73 浏览 评分:0.0
一层for(≧∇≦)ノ 。。。 摘要:解题思路:简单注意事项:无参考代码:#include<iostream> //其实就是操作系统的短作业优先算法,其平均等待时间最小 #include<algorithm> using n…… 题解列表 2021年04月13日 0 点赞 0 评论 192 浏览 评分:0.0
蓝桥杯算法提高VIP-打水问题 -贪心 摘要:```cpp /* 题目描述 N个人要打水,有M个水龙头,第i个人打水所需时间为Ti,请安排一个合理的方案使得所有人的等待时间之和尽量小。 输入 第一行两个正整数N M …… 题解列表 2020年04月18日 0 点赞 0 评论 441 浏览 评分:9.0
求大佬告诉我为什么错了?明明能做出来啊!(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 评论 354 浏览 评分:0.0
蓝桥杯算法提高VIP-打水问题 (C语言代码) 摘要:解题思路:排序,把n个人按顺序分成m份,每份后面的人加上前面的人的打水和等待时间。注意事项:参考代码:#include <bits/stdc++.h> using namespace std; i…… 题解列表 2019年03月05日 1 点赞 0 评论 1231 浏览 评分:9.9
蓝桥杯算法提高VIP-打水问题 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<algorithm>using namespace std;int main(){ int n,m; cin>>n>…… 题解列表 2019年03月03日 0 点赞 0 评论 352 浏览 评分:0.0
蓝桥杯算法提高VIP-打水问题 (C语言代码)---------------C语言——菜鸟级 摘要:解题思路: 注意事项: 参考代码: ```c #include int main(){ int n,r,i,j,j1,r1,sum=0; scanf("%d%d",&n,&r); …… 题解列表 2018年05月16日 5 点赞 1 评论 1292 浏览 评分:9.3
蓝桥杯算法提高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 评论 877 浏览 评分:0.0
蓝桥杯算法提高VIP-打水问题 (C语言代码) 摘要:解题思路:不多说 注意事项:参考代码:#include<stdio.h>#include<stdlib.h>#define N 1001int *sort(int *arr,int n){ int …… 题解列表 2018年02月16日 0 点赞 0 评论 829 浏览 评分:2.0
打水问题 (C语言代码) 摘要:解题思路:贪心策略注意事项:参考代码:#include <stdio.h>int main(){ int a[100],b[10][100]={{0,0}}; int n,m,sum=0,t,i,j…… 题解列表 2017年09月16日 0 点赞 1 评论 1249 浏览 评分:6.0