__Forever__
__Forever__
全部文章
分类
归档
标签
去牛客网
登录
/
注册
__Forever__的博客
全部文章
(共19篇)
题解 | #【模板】二维前缀和# 动态规划方法
#include <iostream> #include <vector> using namespace std; int main() { int n, m, q; cin >> n >> m >> q; v...
2024-10-10
0
26
题解 | #【模板】前缀和# 动态规划
#include <iostream> #include <vector> using namespace std; int main() { int n, q; cin >> n >> q; vector<int&g...
2024-10-09
0
36
题解 | #小乐乐查找数字#
#include <stdio.h>//遍历数组,记录x的出现次数 #include <stdlib.h> int main() { int n,x; int count = 0; //记录x的出现次数 scanf("%d", ...
2024-06-28
0
99
题解 | #序列中整数去重#
#include <stdio.h>//用一个数组,重复的数变为-1,打印时不为-1的数就打印 #include <stdlib.h> void Distincy(int n) { int* a = malloc(sizeof(int) * n); int ...
2024-06-28
0
126
题解 | #牛牛的排列数#
#include <stdio.h> long long Factorial(int n) { //递归会超出时间 //考虑0!为1 if(n == 1 || n == 0) return 1; return n* Facto...
2024-06-28
0
114
题解 | #牛牛的digit#
#include <stdio.h> void Digit(int x, int i) { //有点像二叉树的后序遍历 if(i == 0) return; //printf("%d",x % 10);//前往后打印 ...
2024-06-27
0
112
题解 | #小乐乐走台阶#
#include <stdio.h> int Steps(int n) { if(n == 0) return 0; if(n == 1) return 1; if(n == 2) return 2; re...
2024-06-27
0
96
题解 | #牛牛的素数和#
先写一个判断这个数是否为素数,如果是素数就把他们加起来 #include <stdio.h> #include <stdbool.h> bool isPrime(int x) { //i的范围是2到x-1,如果被其中的数整除了说明就不是素数 for(int ...
2024-06-24
0
101
题解 | #牛牛的短信#
//2024-6-24 #include <stdio.h> #include <stdlib.h> float SMSFees(int* a, int n) { float sum = 0; for(int i = 0; i < n; i++) ...
2024-06-24
0
99
题解 | #[NOIP2010]数字统计#
#include <stdio.h> //函数名的意思是2出现的次数 int Number2OfOccurrences(int L, int R) { int count = 0; //记录二出现的次数 for(int i = L; i <=R; i++) ...
2024-06-23
0
113
首页
上一页
1
2
下一页
末页