自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

ACM!荣耀之路!

【已退役】

  • 博客(14)
  • 资源 (15)
  • 收藏
  • 关注

原创 BAPC2014 J&&HUNNU11590:Jury Jeopardy

题意:一个迷宫,人一开始处在出口位置,要求遍历一次迷宫之后,回到初始位置,现在给出行走的方案,要出画出迷宫人一开始面向右边F:往前走一步R:右转并往前走一步L:左转并往前走一步B:后转并往前走一步思路:直接模拟即可#include #include #include #include #include #include #includ

2015-08-13 00:07:51 3657

原创 BAPC2014 G&&HUNNU11587:Growling Gears

题意:给出N个开口向下的抛物线的a,b,c,要求输出顶点最高的抛物线是哪一条思路:直接抛物线公式算得#include #include #include #include #include #include #include #include #include #include #include #include using namespac

2015-08-13 00:04:04 2147

原创 BAPC2014 K&&HUNNU11591:Key to Knowledge(中途相遇法)

题意:有N个学生,有M题目然后对应N行分别有一个二进制和一个整数二进制代表该同学给出的每道题的答案,整数代表该同学的答案与标准答案相符的个数要求判断标准答案有几个,如果标准答案只有一种,则输出标准答案思路:很容易想到状态压缩,但是很明显1变成1也就是说,对于一个串,我们分半处理首先处理前一半,讨论前一半与标准答案相符的状况,然后再讨论后半串,看与标准答案相符

2015-08-12 23:59:08 1987

原创 BAPC2014 I&&HUNNU11589:Interesting Integers

题意:对于我们已知的斐波那契数列,现在给出一个n,要我们求出一个新的斐波那契数列起始项,使得n能在新的斐波那契数列中,要求起始项y最小思路:我们知道a3 = a1+a2a4 = a1+2*a2a5 = 2*a1+3*a2a6 = 3*a1+5*a2可以得到an = fib[n-2]*a[1]+fib[n-1]*a[2]然后我们只需要枚举就可以

2015-08-12 23:44:37 1525

原创 BAPC2014 E&&HUNNU11585:Excellent Engineers(线段树)

题意:有n个程序员,每个程序员有三个能力值,当一个程序员三个能力值都小于另外一个程序员的时候,那么就可以淘汰那个程序员,问经过淘汰之后,还剩下几个程序员。思路:我们首先按照x排序,那么我们就只需要考虑y,z的情况了,这个时候可以用线段树,我们以y作为区间,以z作为值,每次查询只需要看1~y-1区间内是否已经存在小于z的值,如果存在,那么这个人就要淘汰#include

2015-08-12 23:37:21 1668

原创 BAPC2014 C&&HUNNU11583:Citadel Construction(几何)

题意:给出一系列的点,要求寻找最多4个点,使得组成一个面积最大的多边形思路:很显然只有两种情况,要么是三角形,要么是四边形首先不难想到的是,先要把最外面的点都找出来,其实就是找凸包但是并没有做过凸包,那么怎么办?我们知道,ab与ac向量相乘得到ab*ac>=0的情况下,可以知道所有符合这个条件的,都固定在顺时针,那么我们可以通过这个,来求得所有外层的点得到这些点

2015-08-12 23:32:05 1331 1

原创 BAPC2014 B&&HUNNU11582:Button Bashing(BFS)

题意:给出n,m,代表微波炉有n个按钮,要求达到总时间为m然后给出n个数,代表n个按钮能增加的时间,问最少几步,能够使得按出的总时间大于等于要求的时间,并且相差最小输出最小的步数与相差的最小值要求,当总时间小于0时,时间为0,大于3600时,时间为3600思路:直接暴力BFS,用VIS记录步数#include #include #include #

2015-08-12 23:17:05 1471

原创 HNU13383:The Big Painting

Problem descriptionSamuel W. E. R. Craft is an artist with a growing reputation. Unfortunately, the paintings he sells do not provide him enough money for his daily expenses plus the new suppl

2015-08-10 19:57:00 4502

原创 HNU13377:Book Club(DFS)

Problem descriptionPorto’s book club is buzzing with excitement for the annual book exchange event! Every year, members bring their favorite book and try to find another book they like that is

2015-08-10 19:50:42 1765 1

原创 HNU11376:Golf Bot

Problem descriptionInputThe first line has one integer: N, the number of different distances the Golf Bot can shoot. Each of the following N lines has one integer, ki, the di

2015-08-10 19:47:31 1434

原创 HNU11374:GREAT+SWERC=PORTO(DFS)

Problem descriptionWe want to have a great SWERC at Porto this year and we approached this challenge in several ways. We even framed it as a word addition problem, similar to the classic SEND+

2015-08-10 19:41:48 1817 1

原创 hunnu11562:The Triangle Division of the Convex Polygon(第n个卡特兰数取模)

Problem description  A convex polygon with n edges can be divided into several triangles by some non-intersect diagonals. We denote d(n) is the number of the different ways to divide the convex

2015-08-08 21:03:46 1765

原创 HDU5363:Key Set

Problem Descriptionsoda has a set S with n integers {1,2,…,n}. A set is called key set if the sum of integers in the set is an even number. He wants to know how many nonempty subsets of S are

2015-08-07 11:36:43 1754 1

原创 HDU5353:Average(贪心)

Problem DescriptionThere are n soda sitting around a round table. soda are numbered from 1 to n and i-th soda is adjacent to (i+1)-th soda, 1-st soda is adjacent to n-th soda.Each so

2015-08-07 11:30:58 2418

《数值分析》课后答案

《数值分析》课后答案

2015-07-02

离散数学第四版_课后答案

离散数学第四版_课后答案

2015-07-02

JSP毕业设计

完整的毕业设计,代码+文档

2015-06-29

动态规划32讲

动态规划32讲

2013-12-29

最全的C++函数库

C++函数库

2013-12-29

编译原理

编译原理

2013-12-29

《数据结构》课程设计公园导游图

《数据结构》课程设计公园导游图

2013-12-29

代码行统计工具

代码行统计工具

2013-06-08

《数据结构》 严蔚敏的全部代码实现(C语言)

《数据结构》 严蔚敏的全部代码实现

2013-06-08

ACM必做50题

ACM必做50题的解题

2013-06-08

C/C++函数大全

函数大全

2013-06-08

背包九讲(背包)

背包九讲

2013-06-08

叶核亚 java程序设计实用教程 第三版课后答案

Java程序设计实用教程(第3版) (叶核亚) 电子工业出版社 案例及素材

2013-03-09

计算机程序设计艺术

非常有用的专业书籍! 很有用!

2012-10-20

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除