码迷,mamicode.com
首页 >  
搜索关键字:clu    ( 12562个结果
福建省冬令营 Day3 T1 geronimo geronimo
题解: 将轮换拆解成置换,答案即为置换大小的最小公倍数 ...
分类:其他好文   时间:2017-01-26 11:27:04    阅读次数:310
c++随机数及rand()的缺陷
c++生成随机整数和浮点数如下: 输出如下: 还可以使用标准C的rand,如下: 输出如下: 关于使用随机数引擎还是rand()函数的问题,在C++标准库第二版17.1.1看到如下说明: ...
分类:编程语言   时间:2017-01-26 09:52:44    阅读次数:206
POJ 2686 Traveling by Stagecoach(状压DP)
【题目链接】 http://poj.org/problem?id=2686 【题目大意】 给出一张无向图,你有n张马车票每张车票可以租用ti匹马, 用一张马车票从一个城市到另一个城市所用的时间为这两个城市间的道路距离除以马的数量 一张马车票只能用一次,问从a到b的最短时间 【题解】 dp[S][u] ...
分类:其他好文   时间:2017-01-25 23:02:49    阅读次数:225
ACM ——Points in Segments
Given n points (1 dimensional) and q segments, you have to find the number of points that lie in each of the segments. A point pi will lie in a segmen ...
分类:其他好文   时间:2017-01-25 21:18:47    阅读次数:263
vc++之stdafx.h
关于stdafx.h的解释,其实蛮多的,在vs中,既然创建c++工程的时候,默认会给生成main.cpp,并且自动包含了stdafx.h,而且stdafx.h不是c++标准的一部分,那么个人认为,理解stdafx.h最好的方式就是打开stdafx.h,看看里面到底有些什么应该更好。其中的内容如下: ...
分类:编程语言   时间:2017-01-25 16:29:23    阅读次数:214
Unix 线程共享创建进程打开的文件资源(1)
执行环境:Linux ubuntu 4.4.0-31-generic #50-Ubuntu SMP Wed Jul 13 00:07:12 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux 1. 测试代码 : a.c 2. 如果系统没有相应的pthread库,执行: 1 ...
分类:编程语言   时间:2017-01-25 16:27:08    阅读次数:171
C++调用C函数
为了防止无良网站的爬虫抓取文章,特此标识,转载请注明文章出处。LaplaceDemon/ShiJiaqi。 http://www.cnblogs.com/shijiaqi1066/p/6349243.html 有一个程序,代码目录如下: .|-- calc| |-- calc.c| `-- calc ...
分类:编程语言   时间:2017-01-25 12:31:25    阅读次数:216
C++生成静态库
//StaticMath.h #include <iostream> class StaticMath { public: //StaticMath(void); //~StaticMath(void); static double add(double a, double b);//加法 void ...
分类:编程语言   时间:2017-01-25 10:43:23    阅读次数:308
POJ 2240 Arbitrage (spfa判环)
Arbitrage Arbitrage is the use of discrepancies in currency exchange rates to transform one unit of a currency into more than one unit of the same cur ...
分类:其他好文   时间:2017-01-25 01:01:24    阅读次数:221
hdu1093
#include <iostream> using namespace std; int main() { int n,m,a,sum=0; while(cin>>n) { while (n--) { cin>>m; sum=0; while(m--) { cin>>a; sum=sum+a; } ...
分类:其他好文   时间:2017-01-25 00:55:26    阅读次数:220
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!