文科生的悲哀-题解(C语言代码) 摘要:解题思路: 大家可以试着写出n=1到n=5或者更多的时候的考试安排次数,会发现它跟斐波那契数列是一样的。 注意: 结果可能会很大,用long long int可能也存储不了,所有每次记得mo…… 题解列表 2019年11月26日 0 点赞 0 评论 615 浏览 评分:9.9
文科生的悲哀-题解(C语言代码)满分代码!! 摘要:#####参考代码如下: #include using namespace std; int main() { int n; …… 题解列表 2019年12月02日 0 点赞 0 评论 684 浏览 评分:9.9
文科生的悲哀-题解(C语言代码) 摘要:#### 解题思路: 本题其实是斐波那契数列的变形 #### 参考代码: ```c #include int main() { int i,n,a,b,c; scanf("%…… 题解列表 2020年02月02日 0 点赞 0 评论 639 浏览 评分:9.9
文科生的悲哀-题解(C语言代码) 摘要: ``` #include int a[10000]={1,1},n,x=1; int main(void){//分析可得,该题明显是一个斐波那契数列。1 1 2 3 5 whil…… 题解列表 2020年02月11日 0 点赞 0 评论 399 浏览 评分:0.0
文科生的悲哀-题解(C++代码)记忆化搜索 摘要:懒得写注释了,学过记搜的应该能看懂 ```cpp #include using namespace std; const int maxn=10005; int n,a[4][2]={2,…… 题解列表 2020年03月30日 0 点赞 0 评论 418 浏览 评分:6.0
JakeLin-1225题-文科生的悲哀-题解(C++代码)-DP+DFS(记忆化搜索) 摘要:```cpp #include #include #include using namespace std; const int maxn = 10005; int dp[5][maxn]…… 题解列表 2020年04月19日 0 点赞 0 评论 570 浏览 评分:6.0
文科生的悲哀(使用递归发现规律) 摘要:解题思路:由递归发现规律...注意事项:单单用递归是会超时的!!!参考代码:#include <iostream>using namespace std;int sum = 0;int N;void …… 题解列表 2021年04月07日 0 点赞 0 评论 150 浏览 评分:0.0
1225: 文科生的悲哀-标准题解(C++代码),26行代码,效率极高,DFS+记忆化搜索 摘要:#include <iostream> using namespace std; int n,a[4][10001];//a[i][j]用来记录还剩j次考试时且这次考试是第i门时的总情况数。避免深…… 题解列表 2021年04月20日 0 点赞 0 评论 746 浏览 评分:8.4
python直观解法 摘要:解题思路:只要算出每次考试各科可能的情况,然后对其分支计算下一次考试可能的情况直到最后一场考试注意事项:python中整型无范围限制,所以可以最后再取余参考代码:# 政治,综合,历史,地理result…… 题解列表 2022年06月06日 0 点赞 0 评论 128 浏览 评分:0.0
文科生的悲哀(找规律) 摘要:解题思路:第一次第二次第三次第四次第五次政治历史政治历史政治地理历史地理综合政治地理地理观察题目和表格可以发现,奇数次的政治和地理的数目分别和上一奇数次的政治和地理的数目有关系,即第x次的政治数量为x…… 题解列表 2023年02月03日 0 点赞 0 评论 177 浏览 评分:8.0