蓝桥杯算法训练VIP-装箱问题 (C++代码)(递归) 摘要: 只要知道递归出口就行了,状态转移方程很容易找。参考代码:#include<bits/stdc++.h> using namespace std; int DP(int volu…… 题解列表 2018年06月09日 0 点赞 0 评论 1173 浏览 评分:0.0
Minesweeper (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>int main(){ int row,col,field=0; int i,j,k,l,i1,j1…… 题解列表 2018年06月09日 0 点赞 0 评论 2210 浏览 评分:0.0
蓝桥杯算法提高- c++_ch02_03 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ enum x{stone,cloth,scissors}; enum x a,b; scanf("%…… 题解列表 2018年06月09日 1 点赞 0 评论 1330 浏览 评分:9.9
蓝桥杯算法训练VIP-筛选号码 (C++代码)(不好玩) 摘要:注意事项: 不好玩。参考代码:#include<bits/stdc++.h> using namespace std; int is(int n, int m) { int …… 题解列表 2018年06月09日 0 点赞 0 评论 1261 浏览 评分:0.0
蓝桥杯算法训练VIP-简单加法(基本型) (C++代码)(不好玩) 摘要:注意事项: 不好玩。参考代码:#include<bits/stdc++.h> using namespace std; int is(int i1, int i2…… 题解列表 2018年06月09日 0 点赞 0 评论 1606 浏览 评分:0.0
判断第几天 (C++代码)(不好玩) 摘要:注意事项: 不好玩。参考代码:#include<bits/stdc++.h> using namespace std; int is(int num) { if ((n…… 题解列表 2018年06月09日 0 点赞 0 评论 1734 浏览 评分:0.0
青年歌手大奖赛_评委会打分 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<algorithm> using namespace std; const int M=105; int …… 题解列表 2018年06月09日 0 点赞 0 评论 2129 浏览 评分:9.9
简单的数学题 (C++代码)(不好玩) 摘要:注意事项: 不好玩。参考代码:#include<bits/stdc++.h> using namespace std; int main() { int A = 3, B =…… 题解列表 2018年06月09日 0 点赞 0 评论 1848 浏览 评分:0.0
C二级辅导-求偶数和 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int N,n,sum; scanf("%d",&N); while(N--){ sc…… 题解列表 2018年06月09日 0 点赞 0 评论 812 浏览 评分:0.0
C二级辅导-等差数列 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,i=2,sum=0; scanf("%d",&n); while(n--)…… 题解列表 2018年06月09日 0 点赞 0 评论 973 浏览 评分:0.0