题解 1531: 蓝桥杯算法提高VIP-数的划分

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

筛选

火焰 烧尽

摘要:解题思路:                      完全背包问题注意事项:参考代码:#include"bits/stdc++.h" using namespace std; int n; in……

1531的题解,十分简单

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){    int ans[111]={};    int n; ……

数的划分 (Java代码)

摘要:import java.util.Scanner; public class Main { static int nums=0; public static void main(Stri……

完全背包模型,一维优化

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;const int N=100010;int dp[N];//dp[i][j]前i个……

动态规划python

摘要:解题思路:参照carl代码随想录中的零钱兑换II问题解决思路(代码随想录 (programmercarl.com))参考代码:def change(amount,coins):    dp=[0]*……

完全背包问题

摘要:解题思路:    这是优化后的代码通过滚动数组优化注意事项:参考代码:#include <bits/stdc++.h> using namespace std; int dp[1000]; in……

动态规划!!!

摘要:```cpp // f[i][j] = f[i - 1][j] + f[i][j - i] #include using namespace std; const int N = 1……