小比赛例题
文章平均质量分 79
woshi_momomo
这个作者很懒,什么都没留下…
展开
-
并查集
并差集的用途:在处理一个数列有多个两两相互关联的元素,将多个相互关联的放入一个集合,查找并输出有多少组集合。思路:用一个一维数组,将每个元素存入一个数组内。在通过元素,下标的联系构建一个集合。想法就是,如果n个人,每个人都有一个人编号1~N。第一: 将数组的下标和储存内容一致,就是用一个循环for(i=1;i<=n;i++) s[i]=i;//这时的还没有输入有关系的元素,所以这个代表着每个...原创 2018-03-30 19:15:14 · 236 阅读 · 0 评论 -
【巴什博弈】取石子
关于巴什博弈的一个例题:描述 一天,TT在寝室闲着无聊,和同寝的人玩起了取石子游戏,而由于条件有限,他/她们是用旺仔小馒头当作石子。游戏的规则是这样的。设有一堆石子,数量为N(1<=N<=1000000),两个人轮番取出其中的若干个,每次最多取M个(1<=M<=1000000),最先把石子取完者胜利。我们知道,TT和他/她的室友都十分的聪明,那么如果是TT先...原创 2018-04-01 20:22:19 · 377 阅读 · 0 评论 -
移动的机器人(Robot Motion )
Problem Description A robot has been programmed to follow the instructions in its path. Instructions for the next direction the robot is to move are laid down in a grid. The possible instructions are ...原创 2018-03-29 10:33:25 · 473 阅读 · 0 评论 -
Red and Black(队列)
RED AND BLACK There is a rectangular room, covered with square tiles. Each tile is colored either red or black. A man is standing on a black tile. From a tile, he can move to one of four adjacent til...原创 2018-07-25 09:08:11 · 736 阅读 · 0 评论 -
Ascending Rating 单调队列
Problem A. Ascending Rating Time Limit: 10000/5000 MS (Java/Others) Memory Limit: 524288/524288 K (Java/Others) Total Submission(s): 2702 Accepted Submission(s): 296 Problem Description Bef...原创 2018-09-04 19:05:09 · 246 阅读 · 0 评论