蓝桥杯算法训练VIP-旅行家的预算 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<cstdio> #include<iostream> #include<cstring> #include<string> #include<c…… 题解列表 2018年02月10日 0 点赞 0 评论 1492 浏览 评分:6.8
蓝桥杯算法提高VIP-邮票面值设计 (C++代码) 摘要:解题思路:注意事项:参考代码://so easy #include<iostream> #include<cstring>//头文件 using namespace std; int a[17…… 题解列表 2018年02月11日 0 点赞 1 评论 2257 浏览 评分:6.8
蓝桥杯算法提高VIP-聪明的美食家 (Java代码) 摘要:解题思路: 动态规划中的最长不下降子序列问题注意事项:参考代码: import java.util.Scanner; public class C1557 { publi…… 题解列表 2018年03月13日 0 点赞 0 评论 1371 浏览 评分:6.8
优质题解 Jam的计数法 (Java代码) 摘要:题目介绍: 其实这个题猛的一读起来是没有什么头绪的,什么是Jam的计数法?前提是知道什么是Jam数,Jam数其实就是几个字符组成的一个字符串,但是这个字符串中的字符遵循严格的递增…… 题解列表 2018年04月18日 5 点赞 2 评论 2015 浏览 评分:6.8
最多约数问题 (C++代码) 摘要:解题思路:首先,考虑如何求解一个数有多少个约数,1的约数只有1个,其他的数字,对其进行质因数分解可以得到 a = b1^c1 * b2^c2 * b3^c3 * ....如下结果,根据排列组合原理可以…… 题解列表 2018年05月30日 11 点赞 1 评论 2001 浏览 评分:6.8
【蟠桃记】 (C语言代码) 摘要:#include<stdio.h> int main() { int i,j,n,a[31]; while(~scanf("%d",&n)) { a[n]=1; for(i…… 题解列表 2018年06月11日 0 点赞 0 评论 959 浏览 评分:6.8
程序员的表白 (C语言代码) 摘要:#include "stdafx.h" //答案不通过????void fun(int n){ char a[200][200] = { 0 }; int i, …… 题解列表 2018年10月26日 0 点赞 1 评论 4376 浏览 评分:6.8
蓝桥杯算法提高VIP-最大乘积 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int c[20];void paixu(int b[], int n){ int i, j, t…… 题解列表 2018年11月06日 2 点赞 2 评论 1268 浏览 评分:6.8
蓝桥杯2014年第五届真题-套娃 (C++代码) 摘要:解题思路:并查集吧为毛超时啊??最强召唤魔法,地表最强召唤兽~@地表最强召唤兽注意事项:参考代码:#include <iostream> #include <stdio.h> #include <…… 题解列表 2018年12月13日 1 点赞 5 评论 1198 浏览 评分:6.8
优质题解 高精度加法-小妙招 (C/C++语言代码) 摘要:声明:本文引自一篇优质题解:ACM基本输入输出之大数加法编译环境:Windows China HuaWei source Insight 4.0Linux Debain Ubuntu/Kali g++…… 题解列表 2019年01月06日 7 点赞 2 评论 1648 浏览 评分:6.8