题解列表
小白随便写的,记录一下
摘要:> 由递推关系式可知 f(n) = f(n - 1)+ f(n - 3)
>
> 数据范围不大时可以开一个数组把所有可能的输入对应的 f(n) 求出 (就是打表嘛)
>
> 数据范围大时可以考……
1130: C语言训练 数字母 ctype快速计数
摘要:解题思路:注意事项:参考代码:#include <stdio.h>
#include <string.h>
#include <math.h>
#include <stdlib.h>
#inc……
字串简写——前缀和+回溯
摘要:#include<bits/stdc++.h>#include<cstdio> #include<cstring>using namespace std;typedef long long LL;LL……
蓝桥杯算法训练VIP-整数平均值
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[100]; int i; int b; int c=0; scanf("%……
暴力画矩形 【简单易懂】
摘要:#include <iostream>
#include <cmath>
using namespace std;
/*
画矩形
*/
int main()
{
// ……