主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
User_test
2022年3月5日 21:40
回溯 + 美妙的剪枝
P1625
回复 4
|
赞 0
|
浏览 8.6k
package 上海交通大学历年机试真题; import java.util.Scanner; //回溯算法 加美丽的剪枝 已AC public class Q_2017_problemC { int count = 0; public int sum_of_fibonacci(int num) { &nbs...
sherpahu
2021年3月21日 20:12
折半+状态压缩
P1625
回复 0
|
赞 0
|
浏览 9.3k
#include <bits/stdc++.h> using namespace std; int f[39]; //第39项Fibonacci数为102334155(>1e8) map<int,int> cnt1, cnt2; int main() { f[0]=f[1]=1; for(int i=2; i<40; ++i) f[i]=f[i-2]+f[i-1]; for(int s=0; s<1<<19; ++s) { //用s枚举前19项的所有可能状态 int ...
题目
Sum of Fibonacci
题解数量
2
发布题解
热门题解
1
回溯 + 美妙的剪枝
2
折半+状态压缩