今天在测试环境使用yum安装,遇到一个问题: Error: Cannot retrieve metalink for repository: epel. Please verify its path and try again 处理很简单,修改文件“/etc/yum.repos.d/epel.rep ...
分类:
Web程序 时间:
2019-06-06 09:25:34
阅读次数:
141
Description Description Contest time again! How excited it is to see balloons floating around. But to tell you a secret, the judges' favorite time is ...
分类:
其他好文 时间:
2019-06-05 21:28:42
阅读次数:
90
Codeforces 717A Festival Organization(组合数学:斯特林数+Fibonacci数列+推公式) 牛逼题。。。。。推公式非常的爽。。。虽然我是看了别人的博客才推出来的。。。 0.1 斯特林数 下面要用到的是带符号的第一类斯特林数。 $x^{n\downarrow}=\ ...
分类:
其他好文 时间:
2019-06-03 21:45:31
阅读次数:
148
题目描述 大家都知道斐波那契数列,现在要求输入一个整数n,请你输出斐波那契数列的第n项(从0开始,第0项为0)。 n<=39 1 class Solution { 2 public: 3 int Fibonacci(int n) { 4 int a,b; 5 a = 1; 6 b = 1; 7 if ...
分类:
其他好文 时间:
2019-06-01 21:22:20
阅读次数:
99
# Problem_2.py """ Each new term in the Fibonacci sequence is generated by adding the previous two terms. By starting with 1 and 2, the first 10 terms... ...
分类:
其他好文 时间:
2019-05-31 19:58:03
阅读次数:
112
f(1) = 1; f(2) = 1; f(3) = f(1) + f(2) = 2; f(4) = f(3) + f(2) = 3; f(5) = f(4) + f(3) = 5; f(6) = f(5) + f(4) = 8; f(n) = f(n-1) + f(n-2) ; function ...
分类:
Web程序 时间:
2019-05-29 19:39:46
阅读次数:
196
没有正确配置临时文件的存储空间: 在spring mvc配置文件的修改: ...
分类:
编程语言 时间:
2019-05-26 12:45:51
阅读次数:
231
一、shell和bash shell unix Bourne shell ,bash linux Bourne again shell。bash (GNU Bourne Again Shell) 是许多Linux发行版的默认shell。 二、命令解释器的作用 解释用户输入的命令, 执行对应的操作。用 ...
分类:
系统相关 时间:
2019-05-22 09:53:02
阅读次数:
148
大意: 给定数$n$, 求将$n$划分为最少的斐波那契数的和或差. 每次取相邻$n$的斐波那契数一定最优, 考虑证明. 结论1:存在一个最优解,使得每个斐波那契数使用不超过1次.(考虑$2F_n=F_{n-2}+F_{n+1}$) 结论2:存在一个最优解,使得同号数不相邻, 异号数间隔$\ge 2$ ...
分类:
其他好文 时间:
2019-05-20 19:21:28
阅读次数:
105
Fractions Again?! UVA - 10976 It is easy to see that for every fraction in the form 1 k (k > 0), we can always ?nd two positive integers x and y, x ≥ ...
分类:
其他好文 时间:
2019-05-18 21:03:24
阅读次数:
176