题解列表
汉诺塔 (递归一下)
摘要:解题思路:又是板子题,,,第二题有点失望注意事项:参考代码:#pragma comment(linker, "/STACK:1024000000, 1024000000")#include <bits……
等待戈多 (最短路板子题)
摘要:解题思路:准备蓝桥杯了,这个网站很久也没上了,比赛没打过,这次来热热身身为比赛第一题,最短路板子题目,只需要把平时 路径长度 换成 时间, 最后其实求的就是时间的最短路注意事项:水题,没注意的emm注……
蓝桥杯算法提高VIP-排列式 (C++代码)
摘要:解题思路:#include<iostream>
#include<algorithm>
#include<cstdio>
using namespace std;
int main(void)……
蓝桥杯算法提高VIP-找素数 (C++代码)
摘要:#include<iostream>
#include<cstdio>
#include<cmath>
#include<string>
using namespace std;
typed……
蓝桥杯算法提高VIP-删除重复元素 (C++代码)
摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstring>using namespace std;int main(){ char s[100]; cin >……
蓝桥杯2017年第八届真题-Excel地址 (C++代码)水题
摘要:解题思路:注意事项:参考代码:#include<iostream>
#include<queue>
#include<stack>
using namespace std;
int main(……
蓝桥杯算法提高VIP-扑克排序 (C++代码)
摘要:解题思路:注意事项:参考代码:#include<iostream>#include<iterator>#include<stdio.h>#include<iomanip>#include<string……
蓝桥杯2014年第五届真题-分糖果 (C++代码)暴力+模拟 代码简单易解
摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;const int maxn = 100+5;int a[maxn];int tmp[maxn……
蓝桥杯算法提高VIP-打水问题 (C++代码)
摘要:解题思路:注意事项:参考代码:#include<iostream>
#include<algorithm>
using namespace std;
const int N = 1010,M =……