发工资咯 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include "stdio.h"int qianshu(int n);int main(){ int n; while(scanf("%d",&n)&&n) { i…… 题解列表 2019年03月14日 0 点赞 0 评论 377 浏览 评分:0.0
发工资咯 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int a[6]={100,50,10,5,2,1}; int main() { …… 题解列表 2018年05月16日 0 点赞 0 评论 500 浏览 评分:0.0
发工资咯-题解(C++代码) 摘要:这个可以求每个人的最优选择策略。也就是贪心,我这里主要思路就是用:当前工资-可使用的最大面值=余下工资 然后让计数器加一 在利用递归把余下工资当成当前工资 反复即可求得; 主要算法 循环…… 题解列表 2020年04月05日 0 点赞 0 评论 347 浏览 评分:0.0
1197: 发工资咯 摘要:#include<iostream> using namespace std; int main(){ int a[]={100,50,10,5,2,1}; int n,mon…… 题解列表 2021年05月03日 0 点赞 0 评论 137 浏览 评分:0.0
C++贪心法做个笔记期末复习用,说标题太短不让我发 摘要:解题思路:老师上课讲的,做个笔记期末复习用注意事项:参考代码:#include<bits/stdc++.h>using namespace std;const int maxn=1005;int n,…… 题解列表 2022年04月05日 0 点赞 0 评论 162 浏览 评分:0.0
发工资咯(动态规划) 摘要:解题思路:注意事项:参考代码:#include <iostream> using namespace std; //如果发101元,有6种情况: //1.f(101)=f(101-1)+1 /…… 题解列表 2023年08月07日 0 点赞 0 评论 46 浏览 评分:0.0
1197: 发工资咯(贪心算法) 摘要:核心:票票从大开始扣,数量是最少的代码:while True: l = [int(x) for x in input().split()] n = l[0] if n =…… 题解列表 2024年08月30日 0 点赞 0 评论 95 浏览 评分:0.0
发工资咯-题解(C语言代码) 摘要:简单逻辑,应该所有人都可以一目了然吧 ```python while True: ipt = input().split() num = int(ipt[0]) …… 题解列表 2020年03月23日 0 点赞 0 评论 242 浏览 评分:0.0
发工资咯-题解(C语言代码) 摘要:```c #include int main() { int n,p,i,j,k,salary[6]={100,50,10,5,2,1};//纸币金额 scanf("%d",&n); …… 题解列表 2020年04月22日 0 点赞 0 评论 251 浏览 评分:0.0
发工资咯,简单贪心 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; int main(){ // 定义变量n表示输入的整数个数,a数组…… 题解列表 2024年11月16日 0 点赞 0 评论 166 浏览 评分:0.0