上一页 1 2 3 4 5 6 7 ··· 14 下一页
摘要: ////////////////////////////////////////////////////////////////////////////////2353416 2010-11-19 01:19:11 Accepted 1184 C 0 160 VRS//1184 硬币称重 贪心//even就肯定是正常的,凡是出现up或down,问题硬币肯定在几次都轻,或都重的地方//... 阅读全文
posted @ 2010-11-23 14:10 VRS 阅读(249) 评论(0) 推荐(0) 编辑
摘要: //////////////////////////////////////////////////////////////////////////////////////////2352935 2010-11-18 15:33:40 Accepted 1117 C 0 160 VRS//1117 哈夫曼树//注意Build_HuffmanTree()这个函数只支持至少两个Node来... 阅读全文
posted @ 2010-11-23 14:09 VRS 阅读(231) 评论(0) 推荐(0) 编辑
摘要: ///////////////////////////////////////////////////////////////////1161 多湖钓鱼 枚举+贪心 也是POJ 1042//其一,John在路上花费的时间只与最终到达最远的湖有关;其二,只需考虑在不同的湖停留的时间,不要考虑先后。//所以可以对于最终到达第1到第25个湖这n种情况,先扣除路上时间,在剩下的时间不断用贪心挑可钓鱼数最大... 阅读全文
posted @ 2010-11-23 14:08 VRS 阅读(546) 评论(0) 推荐(0) 编辑
摘要: /////////////////////////////////////////////////////////////////////////////////////////2351692 2010-11-17 16:53:46 Accepted 1029 C 0 164 VRS//1029 房间移桌子 贪心法#include<stdio.h>#include<... 阅读全文
posted @ 2010-11-23 14:06 VRS 阅读(204) 评论(0) 推荐(0) 编辑
摘要: /////////////////////////////////////////////////////////////////////////////////////2351191 2010-11-17 00:58:08 Accepted 1025 C 10 216 VRS//1025 木棍分堆 贪心法 分别通过了C++版本和C版本//#include<stdlib.h&g... 阅读全文
posted @ 2010-11-23 14:05 VRS 阅读(230) 评论(0) 推荐(0) 编辑
摘要: ////////////////////////////////////////////////////////////////////////2351382 2010-11-17 13:13:26 Accepted 1007 C 310 156 VRS//1007 数论题目#include<stdio.h>int main(){ double x,psix,k,sum;... 阅读全文
posted @ 2010-11-23 14:03 VRS 阅读(316) 评论(0) 推荐(0) 编辑
摘要: ///////////////////////////////////////2350896 2010-11-16 19:50:24 Accepted 1852 C 0 160 VRS//1852 桌球碰撞 水题#include<stdio.h>#include<math.h>#define pi 3.1415926int main(){ int row,co... 阅读全文
posted @ 2010-11-23 14:00 VRS 阅读(197) 评论(0) 推荐(0) 编辑
摘要: //////////////////////////////////////////////////////////////////////2350677 2010-11-16 17:00:04 Accepted 2544 C++ 0 180 VRS//水题//////////////////#include<stdlib.h>#include<stdio.h>#inclu... 阅读全文
posted @ 2010-11-23 13:59 VRS 阅读(193) 评论(0) 推荐(0) 编辑
摘要: C语言获取系统时间的几种方式C语言中如何获取时间?精度如何? 1 使用time_t time( time_t * timer ) 精确到秒2 使用clock_t clock() 得到的是CPU时间 精确到1/CLOCKS_PER_SEC秒3 计算时间差使用double difftime( time_t timer1, time_t timer0 )4 使用DWORD GetTickCount() ... 阅读全文
posted @ 2010-09-21 14:26 VRS 阅读(6501) 评论(0) 推荐(0) 编辑
摘要: 如何开始使用boost的跨平台thread库(Linux)boost主页:http://www.boost.org/在主页点击download进入sourceforge页面下载,当前最新版本为boost_1_33_1,有多种文件格式可供下载(包括.zip, .tar.gz等),内容相同,都是boost_1_33_1的全部源代码。下载后解压(假设解压目录为/home/yjguo/boost_1_33... 阅读全文
posted @ 2010-09-15 11:16 VRS 阅读(4587) 评论(1) 推荐(2) 编辑
上一页 1 2 3 4 5 6 7 ··· 14 下一页