如歌丶
如歌丶
全部文章
分类
题解(37)
归档
标签
去牛客网
登录
/
注册
如歌丶的博客
TA的专栏
5篇文章
0人订阅
指尖的温柔梦
5篇文章
403人学习
全部文章
(共14篇)
值周-pair-区间合并
来自专栏
#include <iostream> #include <cstring> #include <string> #include <algorithm> #include <utility> using namespace std; in...
C++
数组
2022-05-19
0
339
n皇后问题
来自专栏
#include <bits/stdc++.h> using namespace std; const int N = 1e5+10; long long res[N]; const int M = 1e9+7; int main() { int n,t; res[1]...
C++
数组
2022-05-05
0
281
赛车
来自专栏
#include <iostream> #include <math.h> #include <algorithm> #include <set> using namespace std; int fun(int x) { int ans = ...
C++
数组
2022-05-04
0
379
上进的凡凡
找寻每一段和的规律,利用vector容器 #include <iostream> using namespace std; #include <vector> const int N = 1e5+10; int n; long long ans =0; int main()...
C++
数组
2022-04-29
0
331
数字游戏-困难版本
来自专栏
数字游戏-困难版本 1.这是一个排列问题,用字符串s读取b,创建数组a[10],记录s中没有的0-9的字符共k个, 小心0的情况,如果s中有‘0’,让a[0]=-1; 2.如果s中有‘0’,满足条件的数字的个数为sum=fun(k,n);fun()函数和pow()函数一样,我怕数据超出范围,在fun...
C++
C
字符串
数组
贪心
动态规划
2022-04-16
0
353
数字游戏-简单版本
数字游戏-简单版本 用string 读取,二重for循环判断s中的某一个字符饭,是否在t中也含有 #include <iostream> #include <string> using namespace std; string s,t; int main() { ...
C++
C
字符串
数组
2022-04-16
0
352
H-fishfloss and cat's food
H-fishfloss and cat's food 利用前缀和 #include <iostream> #include <cstring> using namespace std; const int N = 1e5+10; double ans[N]; /...
C++
数组
动态规划
2022-04-16
0
313
题解 | #校园跑#
先计算总共走的路,其中有重复走的,再减去重复走的路 > #include <iostream> using namespace std; long long n,res=0; int main() { scanf("%lld",&n); for(long l...
C++
数组
深度优先搜索
2022-04-16
0
311
c-打字错误
c-打字错误 1.注意题目上说的,最多交换一次,且选择S1中相邻的两个字符交换他们的位置,注意是相邻位置。 2.首先用a,b记录两个字符串不相同位置的下标,res记录不相同位置的个数 3.如果选择S1中相邻的两个字符交换他们的位置,能使s==t,则b-a=1,并且s[a]==t[b]&&am...
C++
字符串
数组
2022-04-16
0
310
B-神奇的函数
1.在fun()函数中计算传入数据n的二进制序列中,1的个数,如果为奇数,fun()函数返回值为1,偶数,返回值为0. 2.逻辑左移,右移计算规则。 #include <iostream> using namespace std; long long n,i; inline long ...
C++
数组
动态规划
2022-04-16
0
362
首页
上一页
1
2
下一页
末页