//创建工作线程CWinThread*AFXAPIAfxBeginThread(AFX_THREADPROCpfnThreadProc,//线程函数LPVOIDpParam,//传给线程函数的参数intnPriority=THREAD_PRIORITY_NORMAL,//线程的优先级UINTnSta...
分类:
编程语言 时间:
2014-08-06 18:26:21
阅读次数:
229
这题很智慧。VJ上4000多ms#include#include#include#include #include using namespace std;int main(){ int T,n,m,sum; int a[2005]; scanf("%d",&T); whil...
分类:
其他好文 时间:
2014-08-06 17:42:41
阅读次数:
183
// 按钮点击事件-(void)startTime{ __block int timeout=30; //倒计时时间 dispatch_queue_t queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0); dis...
分类:
其他好文 时间:
2014-08-06 14:12:31
阅读次数:
216
这题不是裸的最短路么?但是一看数据范围就傻了。点数10^6,边数10^7。这个spfa就别想了(本来spfa就是相当不靠谱的玩意),看来是要用堆优化dijkstra了。但是,平时写dijkstra时为了偷懒直接用的STL的priority_queue,没办法改变权值,所以都是直接把pair压进堆里。...
分类:
其他好文 时间:
2014-08-06 11:40:41
阅读次数:
247
Measures of significance and interestingness for association rules and itemsets:http://michael.hahsler.net/research/association_rules/measures.htmlhtt...
分类:
其他好文 时间:
2014-08-06 01:29:50
阅读次数:
181
接上文:iOS: 在代码中使用Autolayout (1) – 按比例缩放和优先级。我们继续来看在代码中使用Autolayout的话题。先说intrinsicContentSize,也就是控件的内置大小。比如UILabel,UIButton等控件,他们都有自己的内置大小。控件的内置大小往往是由控件本...
分类:
其他好文 时间:
2014-08-05 19:02:40
阅读次数:
215
一般建立的虚拟机都有/etc/udev/rules.d/70-persistent-net.rules这个目录,这个文件绑定了网卡和mac地址,所以新建机器是换了网卡后,mac地址就变了,所以网卡无法启动,如果要解决这个问题,需要把这个目录删除。(1)、vi/etc/sysconfig/network-scripts/ifcfg-eth0这个文件..
分类:
其他好文 时间:
2014-08-05 11:36:09
阅读次数:
254
Absolute sortLet's try some sorting. Here is an array with the specific rules.The array (a tuple) has various numbers. You should sort it, but sort it...
分类:
其他好文 时间:
2014-08-05 10:50:49
阅读次数:
204
1 #include 2 #include 3 #include 4 #include 5 #include 6 using namespace std; 7 8 // Empty the priority queue and print its contents. 9 templat...
分类:
其他好文 时间:
2014-08-05 00:38:18
阅读次数:
203