Eric25
Eric25
全部文章
分类
归档
标签
去牛客网
登录
/
注册
Eric25的博客
全部文章
(共62篇)
题解 | #字符统计#
#include<stdio.h> typedef struct { char zifu; int cnt; }node; int main(void) { char s...
C
2022-08-12
0
232
题解 | #自守数#
#include<stdio.h> int main(void) { int n; scanf("%d",&n); int i=1; &nbs...
C
2022-08-11
0
262
题解 | #质数因子#
基本解法和评论区一致,主要是解决超时的问题 1.不需要判断是否是质数 2.减小程序运行时间,缩小for循环的执行次数,改条件i<=n为i*i<=n,因为如果质数因子大于n的平方根,那么被因子整除后,结果比上一个质因子更小了。 但i*i<=n也会出现问题,就是当n成为...
C
2022-08-11
1
386
题解 | #尼科彻斯定理#
#include<stdio.h> int main(void) { int m; scanf("%d",&m); int i=1; &nbs...
C
2022-08-11
0
228
题解 | #百钱买百鸡问题#
#include<stdio.h> int main(void) { int n; scanf("%d",&n); int x; ...
C
2022-08-10
0
231
题解 | #表示数字#
#include<stdio.h> int main(void) { char str[101]={0}; scanf("%s",&str); int len=str...
C
2022-08-10
0
251
题解 | #公共子串计算#
#include<stdio.h> int main(void) { char str1[150]={0}; char str2[150]={0}; scanf("%s",&...
C
2022-08-10
0
296
题解 | #查找两个字符串a,b中的最长公共子串#
#include<stdio.h> int main(void) { char str1[301]={0}; char str2[301]={0}; scanf("%s",&...
C
2022-08-10
0
323
题解 | #最长回文子串#
#include<stdio.h> int main(void) { char str[351]; scanf("%s",&str); int len=strlen(...
C
2022-08-10
0
273
题解 | #DNA序列#
#include<stdio.h> int main(void) { char str[1000]={0}; scanf("%s",&str); int n; &nb...
C
2022-08-10
0
299
首页
上一页
1
2
3
4
5
6
7
下一页
末页