yoheng
yoheng
全部文章
分类
# 2019省赛集训个人和组队积分赛(6)
# codeforces(37)
# DFS(2)
# JAVA学习(10)
# Linux(1)
# NOIP题(3)
# Python学习(8)
# Python数据分析与挖掘(1)
# 做题总结(1)
# 动态规划(8)
# 并查集(2)
# 广搜(4)
# 数据库原理(1)
# 日常小结(1)
# 最小生成树(1)
# 树状数组(6)
# 矩阵快速幂(3)
# 线段树(6)
# 蓝桥杯(1)
ACM之路(1)
codeforces(15)
JAVA学习(2)
KMP(2)
map(1)
二分(1)
优先队列(1)
动态规划(2)
图论(2)
并查集(2)
广搜(1)
操作系统(2)
数据结构(1)
日记(3)
最小生成树(1)
未归档(137)
树状数组(1)
欧拉函数(2)
比赛题(1)
省赛集训个人和组队积分赛(5)
矩阵快速幂(1)
算法学习(3)
线段树(3)
计算机网络(7)
面经(1)
面试算法题(1)
面试经历(1)
归档
标签
去牛客网
登录
/
注册
yoheng的博客
全部文章
(共302篇)
codefoces- Nauuo and Chess
题目链接 Nauuo is a girl who loves playing chess. One day she invented a game by herself which needs n chess pieces to play on a m×m chessboard. The rows...
2021-04-23
0
474
树状数组-Matrix
题目链接 Given an N*N matrix A, whose elements are either 0 or 1. A[i, j] means the number in the i-th row and j-th column. Initially we have A[i, j] = 0 ...
2021-04-23
0
492
H题 Simple Triangle
H题; In this problem you need to make a triangle ,just like the sample out. The element in the ith row and jth column should be the product(乘积) of i a...
2021-04-23
0
369
dfs-最大黑区域
题目链接 最大黑区域 二值图像是由黑白两种像素组成的矩形点阵,图像识别的一个操作是求出图像中最大黑区域的面积。请设计一个程序完成二值图像的这个操作。黑区域由黑像素组成,一个黑区域中的每个像素至少与该区域中的另一个像素相邻,规定一个像素仅与其上、下、左、右的像素相邻。两个不同的黑区域没有相邻的像素。一...
2021-04-23
0
590
codefoces-B. Plus from Picture
题目链接 You have a given picture with size w×h. Determine if the given picture has a single “+” shape or not. A “+” shape is described below: A “+” shap...
2021-04-23
0
413
codefoces-A. Feed the cat
题目链接 A. Feed the cat After waking up at hh:mm, Andrew realised that he had forgotten to feed his only cat for yet another time (guess why there’s only...
2021-04-23
0
353
java-Sting-StrngBuffer类简单总结
String 类 String是final类型,一旦创建其内容和长度是不可改变的。 String类常用的一些方法; int length();//返回此字符串的长度; boolean equals( );//此字符与指定字符比较 String substring(int beinIndex...
2021-04-23
0
455
isalpha()函数
使用时需包含头文件<ctype.h> #include<ctype.h> 原型:int isalpha(int ch) 判断字符ch是否为英文字母,当ch为英文字母a-z或A-Z时,返回非零值,否则返回零。 #include<iostream> #inclu...
2021-04-23
0
432
codeforce-Text Document Analysis
我是题目 Modern text editors usually show some information regarding the document being edited. For example, the number of words, the number of pages, or...
2021-04-23
0
367
KMP
// int KMP(int s[MM],int p[MM],int st,int tn,int F[MM]) { int i=0,j=0; while(i<st&&j<tn) { if(j==-1||s[i]==p[j]) ...
2021-04-23
0
419
首页
上一页
5
6
7
8
9
10
11
12
13
14
下一页
末页