Beauty of Array
Time Limit: 2 Seconds
Memory Limit: 65536 KB
Edward has an array A with N integers. He defines the beauty of an array as the summation of all distinct integers in the arr...
分类:
其他好文 时间:
2015-04-25 21:14:48
阅读次数:
220
Submit Status Practice HDU
1494
Description
跑跑卡丁车是时下一款流行的网络休闲游戏,你可以在这虚拟的世界里体验驾驶的乐趣。这款游戏的特别之处是你可以通过漂移来获得一种
加速卡,用这种加速卡可以在有限的时间里提高你的速度。为了使问题简单化,我们假设一个赛道分为L段,并且给你通过每段赛道的普通耗时Ai和用加速卡的耗时Bi。加速...
分类:
其他好文 时间:
2015-04-21 09:48:52
阅读次数:
215
算是一道模板题了,可惜弱的一B的我并不会划分树,花了点时间学了下,回头A了这道题
3s的限时跑了2.8s也是醉了。。。
Description
In this problem you are given a number sequence P consisting of N integer and Pi is the ith element in the sequence. Now ...
分类:
其他好文 时间:
2015-04-15 11:19:51
阅读次数:
151
题解链接:http://acm.nyist.net/JudgeOnline/problem.php?pid=541 几天前百度题解后用数学知识AC的,后来大牛说这是一道动态规划题。 网上的数学解题链接:http://blog.csdn.net/x314542916/article/details/8...
分类:
其他好文 时间:
2015-04-11 19:27:24
阅读次数:
148
模拟 a 反应物集合 ; b 生成物集合; c 存在的化合物或单质集合; ans 新生成化合物集合 1、如果反应无均在已生成的化合物集合中,则完成反应,将合成物加入c集合 2、对每个方程式的反应物进行排序,方便加速查找 3、不停的搜索,直到没有新化合物生成。 #include
#include
#i...
分类:
其他好文 时间:
2015-04-06 12:46:57
阅读次数:
182
练习使用字符串函数了。 1、字串的反转也是它的字串,2、最长,3、最先出现 string: #include
#include
#include
#include
#include
using namespace std; int main()
{ int t, n; string s; cin>>...
分类:
其他好文 时间:
2015-04-04 18:02:26
阅读次数:
105
题目链接:http://acm.nyist.net/JudgeOnline/problem.php?pid=168分析:找到一天中需要最多的房间即可#include#include#include#includeusing namespace std;#define N 200 int day[N]...
分类:
其他好文 时间:
2015-04-02 20:38:56
阅读次数:
117
题目链接:http://acm.nyist.net/JudgeOnline/problem.php?pid=251 规则: 1、若某竞标价唯一,则胜出 2、若不存在唯一竞标价,则投标次数最少竞标价中标,存在多个时,选择价钱最低且最先投此价钱的为中标 #include
#include
#includ...
分类:
其他好文 时间:
2015-04-02 18:05:58
阅读次数:
118
题目链接:http://acm.nyist.net/JudgeOnline/problem.php?pid=170 根据题意,需要找到度数为1的结点个数,如下图: #include
#include
#include
#include
using namespace std;
#define N 1...
分类:
其他好文 时间:
2015-04-02 09:03:29
阅读次数:
143
#include #include #include #include #include #include using namespace std;
#define N 1100
#define INF 0x7fffffff bool prime[N]; void init()
{ memset(p...
分类:
其他好文 时间:
2015-04-01 21:47:39
阅读次数:
102