蓝桥杯算法提高VIP-排队打水问题 (C++代码) 摘要:解题思路:本题与另一道题很相似,但是在答案上做了一些障眼法。本题求得结果是每个人等待和接水的时间和。参考代码:#include<iostream> #include<algorithm> usin…… 题解列表 2018年03月09日 0 点赞 0 评论 1567 浏览 评分:0.0
蓝桥杯算法训练VIP-接水问题 (C++代码) 摘要:参考代码:#include<iostream> #include<algorithm> using namespace std ; int w[10005],last[105] ;//last储…… 题解列表 2018年03月09日 2 点赞 0 评论 1566 浏览 评分:9.2
蓝桥杯算法提高VIP-寻找三位数 (C++代码) 摘要:#include<iostream> #include<algorithm> using namespace std; int judge(int i,int j,int k){ in…… 题解列表 2018年03月08日 1 点赞 0 评论 1529 浏览 评分:0.0
蓝桥杯基础练习VIP-龟兔赛跑预测 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int num[1000005],nums=0;int main(){ in…… 题解列表 2018年03月08日 0 点赞 0 评论 876 浏览 评分:0.0
蓝桥杯基础练习VIP-回形取数 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int num[1000005],nums=0;int main(){ in…… 题解列表 2018年03月08日 0 点赞 0 评论 779 浏览 评分:0.0
蓝桥杯算法提高VIP-剪刀石头布 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a,b; scanf("%d%d",&…… 题解列表 2018年03月08日 0 点赞 0 评论 832 浏览 评分:0.0
蓝桥杯基础练习VIP-矩阵乘法 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int n,m; scanf("%d%d",&…… 题解列表 2018年03月08日 0 点赞 0 评论 1272 浏览 评分:0.0
蓝桥杯基础练习VIP-完美的代价 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int n,m; scanf("%d\n",&…… 题解列表 2018年03月08日 0 点赞 0 评论 1643 浏览 评分:2.0
蓝桥杯基础练习VIP-矩形面积交 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>typedef long long ll;using namespace std;int main() { dou…… 题解列表 2018年03月08日 0 点赞 1 评论 699 浏览 评分:0.0
蓝桥杯历届试题-回文数字 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int s,flag=0; cin>>s; for(int i=100…… 题解列表 2018年03月08日 0 点赞 0 评论 945 浏览 评分:0.0