题解 1197: 发工资咯

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

简单的贪心题

摘要:解题思路:     网站指定是贪心算法,那就是最简单的类似背包题目。先从最大面值的钱开始尝试注意事项:  参考代码:#include<bits/stdc++.h>using namespace std……

1197: 发工资咯

摘要:解题思路:注意事项:参考代码:def coin_change(n):     coins = [100, 50, 10, 5, 2, 1]     num = []     for coin i……

发工资咯-题解(C语言代码)

摘要:题解太多了,不想再写了。混个分数呗! ```c #include int mod(int x) { int a = 0; while(x>=100){ x -= 100……

1197: 发工资咯

摘要:#include<iostream> using namespace std; int main(){     int a[]={100,50,10,5,2,1};     int n,mon……

题解(C++代码)(暴力??)

摘要:emmm 一个简单的暴力 我交了5回都是百分之五十 搞半天结果没有考虑算5块钱的情况 根据题意的数据量可以直接暴力,虽然我也想不到怎么优化(orz) 就是直接先拿票值大的钱 贪心的证……

发工资咯(Java题解+递归+数组)

摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main {    // 定义人民币面额数组    static int[] denomina……

发工资咯 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include <iostream> using namespace std; int main(){ int n,t; while(cin>>n&&n){……

发工资咯!(python代码,思路清晰)

摘要:解题思路:注意事项:    数据需要横向输入参考代码:b = 0money = 0sum1 = 0sum2 = 0while True:             # 输入数据,必须要横向输入    a……