1197: 发工资咯
摘要:解题思路:sum要从新置零,从新置零,从新置零。垃圾,错这么多次了还不长记性,对自己无语了。注意事项:参考代码:#include<stdio.h>#include<stdlib.h>int main(……
编写题解 1197: 发工资咯
摘要:解题思路:注意事项:参考代码:#include "stdio.h"int main() { int n; int M; while (scanf("%d", &n) != EOF) {int k =……
发工资咯-题解(C语言代码)
摘要:解题思路:注意事项:参考代码://发工资,递归思路#include <stdio.h>int run (int a);int main (){ int n,sum=0; int a; while(s……
发工资咯-题解(C语言代码)
摘要:### 贪心解题思路:
要求至少需要多少张纸币,即**如何用最少数量的钱满足职员的工资。**
这题和分发饼干的题目差不多[分发饼干](https://leetcode-cn.com/problem……
发工资咯-题解(C语言代码)
摘要:```c
#include
int main()
{
int n,p,i,j,k,salary[6]={100,50,10,5,2,1};//纸币金额
scanf("%d",&n);
……
发工资咯-题解(C语言代码)
摘要:简单逻辑,应该所有人都可以一目了然吧
```python
while True:
ipt = input().split()
num = int(ipt[0])
……
发工资咯-题解(C语言代码)
摘要: #include
#include
#include
#define N 100
//因为要使发工资所使用的人民币张数最少,所以肯定是尽量先用大面额的人……
发工资咯-题解(C++代码) --动态规划
摘要:# 动态规划
##### 状态转移方程:dp[i]=min(dp[i],dp[i-coin[j]]+1)
但是没贪心效率高
```cpp
#include
using namespace……