蓝桥杯算法提高VIP-彩票 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream> #include <algorithm> using namespace std; int jdj(int*y,int*x)…… 题解列表 2018年03月15日 2 点赞 0 评论 964 浏览 评分:0.0
蓝桥杯算法提高VIP-特殊的质数肋骨 (C++代码) 摘要:解题思路:注意事项:参考代码:深搜(dfs):#include<bits/stdc++.h>//万能头文件 using namespace std; int n1[4]={2,3,5,7};//…… 题解列表 2018年03月15日 4 点赞 3 评论 614 浏览 评分:0.0
蓝桥杯算法提高VIP-文化之旅 (C++代码) 摘要:解题思路:注意事项:参考代码:麻烦的要死:#include<bits/stdc++.h> using namespace std; int z[150]/*每种文化是否已学习或被排斥,-1学习,大…… 题解列表 2018年03月15日 3 点赞 0 评论 1468 浏览 评分:8.0
蓝桥杯算法提高VIP-摆花 (C++代码) 摘要:解题思路:注意事项:参考代码:蛮简单的,动态规划:#include<cstdio> #include<iostream> using namespace std; int f[105][105]…… 题解列表 2018年03月15日 3 点赞 0 评论 1993 浏览 评分:9.9
蓝桥杯算法提高VIP-夺宝奇兵 (C++代码) 摘要:解题思路:注意事项:参考代码:很简单的一道题,可以从下往上推要简单一些:#include<cstdio> int n,a[1002],i,j,ans,p; int max(int &x,int &…… 题解列表 2018年03月15日 2 点赞 0 评论 2042 浏览 评分:9.9
蓝桥杯算法提高VIP-多项式输出 (C++代码) 摘要:解题思路:注意事项:参考代码:水题:#include<bits/stdc++.h> using namespace std; int main(){ int n,a; cin>…… 题解列表 2018年03月15日 5 点赞 1 评论 504 浏览 评分:9.5
蓝桥杯算法训练VIP-回文数 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<cstdio> #include<cstring> char s[201]; int a[401],top; //数组a为高精…… 题解列表 2018年03月15日 2 点赞 0 评论 1271 浏览 评分:2.0
蓝桥杯算法训练VIP-和为T (C++代码) 摘要:解题思路:格式有点问题,但照样过了!嘻嘻嘻!注意事项:参考代码:#include<stdio.h> #include<string.h> #include<stdlib.h> …… 题解列表 2018年03月15日 1 点赞 0 评论 1849 浏览 评分:8.0
蓝桥杯算法训练VIP-传球游戏 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> #define maxn 100 using namespace std; int F[maxn][maxn]; …… 题解列表 2018年03月15日 6 点赞 0 评论 1650 浏览 评分:9.7
蓝桥杯算法训练VIP-Hanoi问题 (C++代码) 摘要:解题思路:注意事项:参考代码:#include "stdio.h" int count=0; void fun(int n,int m,char a,char b,char c) {…… 题解列表 2018年03月15日 1 点赞 0 评论 1449 浏览 评分:0.0