TIOBE的那个榜单太假了
我帮大家搜集了一下
IEEE Spectrum’s 2014 Ranking
This app ranks the popularity of dozens of programming languages. You can filter them by listing only those most relevant to particular sector...
分类:
其他好文 时间:
2014-08-12 17:29:24
阅读次数:
260
水题,一维的DP,表示还剩哪些atom的时候能获得的最大能量#include #include #include #include #include #include #include #include #include #include #include #include #include #in...
分类:
其他好文 时间:
2014-08-12 16:58:54
阅读次数:
203
find the most comfortable roadTime Limit: 1000/1000 MS (Java/Others)Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 3720Accepted Submiss...
分类:
其他好文 时间:
2014-08-12 12:42:44
阅读次数:
227
先把每条边的权值从大到小排序,在一个个枚举,利用并查集判断是否在一个集合中。。。#include
#include
#include
#include
#include
#include
using namespace std;
const int maxn=205;
const int maxm=1005;
const int inf=(0x7f7f7f7f);
#define min(a,b)...
分类:
其他好文 时间:
2014-08-12 10:23:43
阅读次数:
161
Problem Description
XX星有许多城市,城市之间通过一种奇怪的高速公路SARS(Super Air Roam Structure---超级空中漫游结构)进行交流,每条SARS都对行驶在上面的Flycar限制了固定的Speed,同时XX星人对 Flycar的“舒适度”有特殊要求,即乘坐过程中最高速度与最低速度的差越小乘坐越舒服 ,(理解为SARS的限速要求,flycar必须瞬间提...
分类:
其他好文 时间:
2014-08-12 00:44:43
阅读次数:
272
Description
G
Weird Advertisement
Renat Mullakhanov (rem), one of the most talented programmers in the world, passed away on March 11, 2011. This is very sad news for
al...
分类:
其他好文 时间:
2014-08-11 21:27:52
阅读次数:
261
Description
J
Save from Radiation
Most of you are aware of Nuclear Power Plant Explosion at Fukushima after devastating earth quake and tsunami. Many people in Bangladesh ...
分类:
其他好文 时间:
2014-08-11 21:24:43
阅读次数:
252
Statements: This blog was written by me, but most of content is quoted from book【Data Structure with Java Hubbard】
【Description】
Apolynomialis a mathematical function of the fo...
分类:
其他好文 时间:
2014-08-11 21:22:42
阅读次数:
308
对于中文题,直接讲思路吧!
思路:一看题目,兴奋啊,貌似是求最大流相关的问题,但是仔细审题一看,发现是要你去求最大速度与最小速度之差最小的路!最大最小之差最小,那么我们就可以联想到贪心的问题了,这题还有个地方在于能到达目的地,那么就是说明要连通给定的起点与终点了,所以我们可以考虑并查集的思想了!
所以本题的大致的思路可以确定为,我们可以对所有边的权值就行排序,然后从0开始对所有的点进行枚举,连...
分类:
其他好文 时间:
2014-08-11 12:04:02
阅读次数:
267