蓝桥杯算法提高VIP-文化之旅 (C++代码) 摘要:解题思路:注意事项:参考代码:麻烦的要死:#include<bits/stdc++.h> using namespace std; int z[150]/*每种文化是否已学习或被排斥,-1学习,大…… 题解列表 2018年03月15日 3 点赞 0 评论 1381 浏览 评分:8.0
蓝桥杯算法提高VIP-摆花 (C++代码) 摘要:解题思路:注意事项:参考代码:蛮简单的,动态规划:#include<cstdio> #include<iostream> using namespace std; int f[105][105]…… 题解列表 2018年03月15日 3 点赞 0 评论 1897 浏览 评分:9.9
蓝桥杯算法提高VIP-夺宝奇兵 (C++代码) 摘要:解题思路:注意事项:参考代码:很简单的一道题,可以从下往上推要简单一些:#include<cstdio> int n,a[1002],i,j,ans,p; int max(int &x,int &…… 题解列表 2018年03月15日 2 点赞 0 评论 1958 浏览 评分:9.9
蓝桥杯算法提高VIP-多项式输出 (C++代码) 摘要:解题思路:注意事项:参考代码:水题:#include<bits/stdc++.h> using namespace std; int main(){ int n,a; cin>…… 题解列表 2018年03月15日 5 点赞 1 评论 487 浏览 评分:9.5
蓝桥杯算法训练VIP-回文数 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<cstdio> #include<cstring> char s[201]; int a[401],top; //数组a为高精…… 题解列表 2018年03月15日 2 点赞 0 评论 1163 浏览 评分:2.0
蓝桥杯算法训练VIP-和为T (C++代码) 摘要:解题思路:格式有点问题,但照样过了!嘻嘻嘻!注意事项:参考代码:#include<stdio.h> #include<string.h> #include<stdlib.h> …… 题解列表 2018年03月15日 1 点赞 0 评论 1745 浏览 评分:8.0
蓝桥杯算法训练VIP-传球游戏 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> #define maxn 100 using namespace std; int F[maxn][maxn]; …… 题解列表 2018年03月15日 6 点赞 0 评论 1446 浏览 评分: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 评论 1282 浏览 评分:0.0
整除的尾数 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b,i; for(;;) { …… 题解列表 2018年03月15日 0 点赞 0 评论 906 浏览 评分:0.0
简单的a+b (C++代码) 摘要:解题思路:注意事项:参考代码:#include "stdafx.h"int main(){ int a, b,c; scanf_s("%d%d",&a,&b); c = a + b; printf("…… 题解列表 2018年03月15日 0 点赞 0 评论 912 浏览 评分:0.0