上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 19 下一页
摘要: 乘积最大 1 #include<iostream> 2 #include<algorithm> 3 using namespace std; 4 typedef long long ll; 5 const int N=10; 6 ll s,f[N][N],a[N][N]; 7 int main(){ 阅读全文
posted @ 2021-08-21 16:11 Rekord 阅读(435) 评论(0) 推荐(0) 编辑
摘要: 合并石子 1 #include<iostream> 2 #include<cstdio> 3 #include<cstring> 4 #include<algorithm> 5 using namespace std; 6 7 const int N=105; 8 int a[N],f[N][N]; 阅读全文
posted @ 2021-08-17 11:55 Rekord 阅读(343) 评论(0) 推荐(0) 编辑
摘要: 宠物小精灵之收服 1 #include<iostream> 2 #include<cstdio> 3 #include<cstring> 4 #include<algorithm> 5 using namespace std; 6 7 const int N=105; 8 int a[N],b[N] 阅读全文
posted @ 2021-08-17 10:35 Rekord 阅读(236) 评论(0) 推荐(0) 编辑
摘要: 开餐馆 1 #include<iostream> 2 #include<cstdio> 3 #include<cstring> 4 #include<algorithm> 5 using namespace std; 6 7 const int N=105; 8 int a[N],b[N],f[N] 阅读全文
posted @ 2021-08-17 09:39 Rekord 阅读(271) 评论(0) 推荐(0) 编辑
摘要: Charm Bracelet 1 #include<iostream> 2 #include<cstdio> 3 #include<algorithm> 4 using namespace std; 5 6 const int N=3505; 7 int a[N],b[N],f[12885]; 8 阅读全文
posted @ 2021-08-16 21:32 Rekord 阅读(380) 评论(0) 推荐(0) 编辑
摘要: 货币系统 1 #include<iostream> 2 using namespace std; 3 4 const int N=1005; 5 int a[N]; 6 long long f[N][N*10]; 7 int main(){ 8 int n,m; 9 cin>>n>>m; 10 fo 阅读全文
posted @ 2021-08-16 20:40 Rekord 阅读(542) 评论(0) 推荐(0) 编辑
摘要: 潜水员 1 #include<iostream> 2 #include<cstring> 3 #include<algorithm> 4 using namespace std; 5 6 const int N=1005; 7 int a[N],b[N],c[N],f[105][105]; 8 in 阅读全文
posted @ 2021-08-16 20:01 Rekord 阅读(519) 评论(0) 推荐(0) 编辑
摘要: 分组背包 1 #include<iostream> 2 #include<algorithm> 3 using namespace std; 4 5 const int N=205; 6 struct knapsack{ 7 int w,c,p; 8 }; 9 knapsack ns[N]; 10 阅读全文
posted @ 2021-08-16 11:58 Rekord 阅读(687) 评论(0) 推荐(0) 编辑
摘要: 混合背包 1 #include<iostream> 2 #include<algorithm> 3 using namespace std; 4 5 const int N=205; 6 int a[N],b[N],c[N],f[N][N]; 7 int main(){ 8 int m,n; 9 c 阅读全文
posted @ 2021-08-16 10:51 Rekord 阅读(423) 评论(0) 推荐(0) 编辑
摘要: 庆功会 1 #include<iostream> 2 #include<algorithm> 3 using namespace std; 4 5 const int N=505; 6 int a[N],b[N],c[N],f[N][6005]; 7 int main(){ 8 int m,n; 9 阅读全文
posted @ 2021-08-16 10:44 Rekord 阅读(566) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 19 下一页