momoc::题解1564:蓝桥杯算法提高VIP-质因数2 (C++代码) 摘要:解题思路:例子分析: 66%2==0 那么就输出2* 66/2=33 33%2!=0 而33%3==0 输出3空格 …… 题解列表 2018年08月04日 1 点赞 1 评论 1109 浏览 评分:2.0
momoc::题解1485:蓝桥杯算法提高VIP-Torry的困惑(提高型) (C++代码) 题解+注释 摘要:解题思路:1.偶数不是素数,而只有2是素数 2.在编写判断素数递归函数时,只要排除了偶数的可能性,可以从3开始判断注意事项:直接使用判断素数的老方法,会出现超时 …… 题解列表 2018年08月04日 2 点赞 0 评论 1200 浏览 评分:0.0
蓝桥杯算法提高VIP-分苹果 (C++代码)(树状数组 + 差分思想) 摘要:解题思路:参考代码:#include<bits/stdc++.h> using namespace std; const int SIZE = 100211; int BIT[SIZE];…… 题解列表 2018年08月04日 0 点赞 0 评论 756 浏览 评分:0.0
DNA (C++代码)简单容易理解 可AC 摘要:解题思路:按照题目的意思一步一步展开,主要分成三层,上层、中间的X以及下边部分注意事项:需要注意的是循环次数为两个以上的时候上边的图案是从第二层开始的参考代码:#include <iostream>…… 题解列表 2018年08月04日 3 点赞 0 评论 891 浏览 评分:0.0
逆序数 (C++代码)(树状数组 O(nlogn) ) 摘要:解题思路: 离散化 + 树状数组参考代码:#include<bits/stdc++.h> using namespace std; const int SIZE = 1024;…… 题解列表 2018年08月04日 0 点赞 0 评论 992 浏览 评分:0.0
鸡兔同笼 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>#include<iostream>using namespace std;int main() { i…… 题解列表 2018年08月03日 0 点赞 0 评论 988 浏览 评分:0.0
装包装箱问题 (C++代码) 摘要:解题思路:注意事项:参考代码:用到数学函数ceil求较大整值#include<stdio.h>#include<math.h>#include<iostream>using namespace std…… 题解列表 2018年08月03日 1 点赞 0 评论 829 浏览 评分:0.0
王牌花色 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#include<iostream>using namespace std;int n, t, m,…… 题解列表 2018年08月03日 0 点赞 0 评论 1332 浏览 评分:0.0
三位数反转 (C++代码) 摘要:解题思路:注意事项:参考代码:简单点#include<iostream>using namespace std;int main(){ int n; while (cin >> n) cout <<…… 题解列表 2018年08月03日 0 点赞 0 评论 676 浏览 评分:0.0
换硬币 (C++代码) 摘要:解题思路:注意事项:参考代码:简单点#include<iostream>using namespace std;int main(){ int n, a[10] = { 1,2,3,5,8,13,21…… 题解列表 2018年08月03日 0 点赞 0 评论 1130 浏览 评分:0.0