Description Link. 求 \(\sum_{i=1}^{n}\text{fibonacci}_{i}\times i^{k}=\sum_{i=1}^{n}(F_{i-1}+\text{fibonacci}_{i-2})\times i^{k}\),\(1\le n\le10^{17},1 ...
                            
                            
                                分类:
其他好文   时间:
2021-04-06 14:07:28   
                                阅读次数:
0
                             
                    
                        
                            
                            
                                Fib(n)=Fib(n-1)+Fib(n-2);Fib1=Fib2=1; ##递归 public static int fibonacci(int n){ if (n == 1 || n == 2) { return 1; } if (n > 2) { return fibonacci(n - 1 ...
                            
                            
                                分类:
编程语言   时间:
2021-04-02 13:35:33   
                                阅读次数:
0
                             
                    
                        
                            
                            
                                
                    积少成多 Learning Linux From Scratch(一) 冷知识 bash shell Bourne again shell tty means teletypewriter 电传打字机 命令行界面(command line interface, CLI) 快捷键 Shift + Ct ...
                            
                            
                                分类:
系统相关   时间:
2021-02-23 14:17:31   
                                阅读次数:
0
                             
                    
                        
                            
                            
                                
                    1、 aaa = "123" answer = input("please input the answer:") while True: if answer == aaa: break answer = input("please input the answer,again:") print(" ...
                            
                            
                                分类:
编程语言   时间:
2021-02-18 13:38:19   
                                阅读次数:
0
                             
                    
                        
                            
                            
                                问题描述:CentOS 7.9版本 root用户密码输入正确,出现错误密码提示:“sorry,that didn't work.please try again” 解决方案 一,创建普通用户,以前通用户登录 打开终端:输入命令 sudo passwd root 然后输入旧密码,新密码,再确认新密码( ...
                            
                            
                                分类:
其他好文   时间:
2021-02-15 12:37:10   
                                阅读次数:
0
                             
                    
                        
                            
                            
                                
                    一、斐波那契数列 斐波那契数列(Fibonacci sequence),又称黄金分割数列,指的是这样一个数列:0、1、1、2、3、5、8、13、21、34 思路: n位的数等于n-1位和n-2位数之和 使用递归,结束条件n=0和n=1 def f(n): if n==0: return 0 elif ...
                            
                            
                                分类:
编程语言   时间:
2021-02-04 12:26:51   
                                阅读次数:
0
                             
                    
                        
                            
                            
                                
                    题目 题目链接:https://codeforces.com/problemset/problem/757/F 给定一个 \(n\) 个点,\(m\) 条边的带权无向图,和起点 \(s\)。 选择一个点 \(u\)(\(u \neq S\)),使在图中删掉点 \(u\) 后,有尽可能多的点到 \(s ...
                            
                            
                                分类:
其他好文   时间:
2021-01-18 10:37:30   
                                阅读次数:
0
                             
                    
                        
                            
                            
                                执行 npm install 编译出错,提示 ERR! sharp EACCES: permission denied, mkdir '/root/.npm' info sharp Are you trying to install as a root or sudo user? Try again ...
                            
                            
                                分类:
其他好文   时间:
2021-01-16 11:57:44   
                                阅读次数:
0
                             
                    
                        
                            
                            
                                
                    私以为很巧妙的一道计数题 (不会正经的dp做法) 题意:给一个长度为n,仅包含前m个小写字母的字符串S,求有多少个字符串由前m个小写字母构成的T,满足LCS(S,T) == n - 1 n <= 1e5,2 <= m <= 26 我们考虑枚举LCS,容易发现一定是S去掉某个字母得到的,又因为去掉连续 ...
                            
                            
                                分类:
其他好文   时间:
2021-01-14 11:23:28   
                                阅读次数:
0
                             
                    
                        
                            
                            
                                
                    定义Fibonacci的第0项为0,第1项为1,使用C代码求出第n项 // 递归方法, 特点:容易实现,时间空间复杂度高 int fib(int n) { // 入参合法判断 if (n < 0) { return -1; } // 基线条件(base case) if (n < 2) { retu ...
                            
                            
                                分类:
其他好文   时间:
2021-01-12 10:34:15   
                                阅读次数:
0