文科生的悲哀-题解(C语言代码) (递归写的,意料之中时间超限了) 摘要:## 1225题-文科生的悲哀-题解(C语言描述) (递归写的,意料之中时间超限了) #### 拿到题第一反应就是递归 #### 虽然料到可能会时间超限但还是尝试写了一下 #### 递归解法…… 题解列表 2019年11月25日 0 点赞 2 评论 713 浏览 评分:9.9
文科生的悲哀-题解(C语言代码)满分代码!! 摘要:#####参考代码如下: #include using namespace std; int main() { int n; …… 题解列表 2019年12月02日 0 点赞 0 评论 684 浏览 评分:9.9
文科生的悲哀-题解(C语言代码) 摘要:解题思路: 大家可以试着写出n=1到n=5或者更多的时候的考试安排次数,会发现它跟斐波那契数列是一样的。 注意: 结果可能会很大,用long long int可能也存储不了,所有每次记得mo…… 题解列表 2019年11月26日 0 点赞 0 评论 615 浏览 评分:9.9
文科生的悲哀 (C++代码) 摘要:解题思路: 斐波那契数列#include<bits/stdc++.h> using namespace std; typedef long long ll; int main() …… 题解列表 2018年08月23日 0 点赞 0 评论 736 浏览 评分:9.9
文科生的悲哀-题解(C语言代码) 摘要:#### 解题思路: 本题其实是斐波那契数列的变形 #### 参考代码: ```c #include int main() { int i,n,a,b,c; scanf("%…… 题解列表 2020年02月02日 0 点赞 0 评论 639 浏览 评分:9.9
文科生的悲哀 (C语言代码)(用递归写的,超时了) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int count=0; int cishu=0; int n; int nextCourse(int course) {…… 题解列表 2019年01月25日 0 点赞 0 评论 778 浏览 评分:9.9
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
文科生的悲哀(找规律) 摘要:解题思路:第一次第二次第三次第四次第五次政治历史政治历史政治地理历史地理综合政治地理地理观察题目和表格可以发现,奇数次的政治和地理的数目分别和上一奇数次的政治和地理的数目有关系,即第x次的政治数量为x…… 题解列表 2023年02月03日 0 点赞 0 评论 177 浏览 评分:8.0
文科生的悲哀 (C语言代码) 摘要:解题思路:第一次为政治,f(1)=1;第二次为历史,f(2)=1;第三次可能为政治或地理,则f(3)=2;同理,f(4)=3,f(5)=5;注意事项:要输入的n最大值为10000,long long …… 题解列表 2017年10月16日 3 点赞 1 评论 1615 浏览 评分:7.5
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