上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 27 下一页
摘要: 一直以来我都是用360清理系统垃圾的,但现在360越做越烂,越来越臃肿,快赶上金山和腾迅了,所以不得不想其它办法实现我需要的这些常用功能。下面内容是转的,慢慢再学吧。Windows安放垃圾的地方有两处:一是存放在文件夹中,一是存放在注册表里。 文件夹里的垃圾有:“开始”-“文档”里的垃圾,安放在C:WindowsRecent文件夹中;安装程序、编辑文件时产生的临时文件安放在c:windowstemp文件夹中;删除文件时扔往垃圾桶里的东西在C:RECYCLED文件夹(隐含的)放着; 当你上网浏览网站时,Windows会在C:WINDOWSHistory和C:WindowsTemporary .. 阅读全文
posted @ 2011-11-15 18:51 moonbay 阅读(262) 评论(0) 推荐(0) 编辑
摘要: 简单题,直接贴代码/* * hdu1541/win.cpp * Created on: 2011-11-14 * Author : ben */#include <cstdio>#include <cstdlib>#include <cstring>#include <cmath>#include <ctime>#include <iostream>#include <algorithm>#include <queue>#include <set>#include <map> 阅读全文
posted @ 2011-11-14 12:27 moonbay 阅读(151) 评论(0) 推荐(0) 编辑
摘要: 这题一看就想用线段树或数状数组做,过了以后再上网搜别人的解法,发现有人居然没用线段树或数状数组,利用类似部分和的思想,太强大了!/* * hdu1556/win.cpp * Created on: 2011-11-13 * Author : ben */#include <cstdio>#include <cstdlib>#include <cstring>#include <cmath>#include <ctime>#include <iostream>#include <algorithm>#includ 阅读全文
posted @ 2011-11-13 16:53 moonbay 阅读(213) 评论(0) 推荐(0) 编辑
摘要: 欧几里德问题上的博弈,理解后不难。/* * hdu1525/win.cpp * Created on: 2011-11-11 * Author : ben */#include <cstdio>#include <cstdlib>#include <cstring>#include <cmath>#include <ctime>#include <iostream>#include <algorithm>#include <queue>#include <set>#include < 阅读全文
posted @ 2011-11-11 16:54 moonbay 阅读(128) 评论(0) 推荐(0) 编辑
摘要: 具备一定电脑知识的用户,对于记事本的使用一定非常多,利用记事本可以打开大多数程序或文件来查看其原代码,或用记事本来打开可疑文件等等,其灵活的使用方式注定了其较高的使用率。但当用户需要将一个文件使用记事本打开时,都需要从选择“打开方式”中来进行选择,而要是直接设置为默认记事本打开,难免又造成一些不便,这使得经常用到记事本的用户感到比较麻烦。对此今天小编就对在右键中添加“记事本”选项,快速使用记事本打开的技巧进行解析,使得用户的操作一键即可完成。右键“记事本”打开技巧解析:一、添加“用记事本打开”:1.依次展开:在任意位置右键→“新建”→“文本文档”→名字任意→键入以下内容:Windows Reg 阅读全文
posted @ 2011-11-10 19:07 moonbay 阅读(687) 评论(0) 推荐(0) 编辑
摘要: bjfuoj的测试数据最水,用很简单的方法一下就过了,又调了好长时间,才过掉其它OJ上的这道题目~/* * hdu1518/win.cpp * Created on: 2011-11-8 * Author : ben */#include <cstdio>#include <cstdlib>#include <cstring>#include <cmath>#include <ctime>#include <iostream>#include <algorithm>#include <queue># 阅读全文
posted @ 2011-11-08 20:25 moonbay 阅读(282) 评论(0) 推荐(0) 编辑
摘要: /* * hdu1213/win.cpp * Created on: 2011-11-5 * Author : ben */#include <cstdio>#include <cstdlib>#include <cstring>#include <cmath>#include <ctime>#include <iostream>#include <algorithm>#include <queue>#include <set>#include <map>#include & 阅读全文
posted @ 2011-11-05 16:52 moonbay 阅读(186) 评论(0) 推荐(0) 编辑
摘要: 刚做完一道推公式题,这题跟上一题解题思路很像。做完后上网搜索,发现有些人不是我这样做的,他们是发现了结果中有循环节,不过我还是觉得我的做法更巧妙。我的做法如下:首先推出公式f(n)=cell[(n+1)*(n+1)*(2n-1)/4];这里涉及浮点数向上取整问题,将会给取余操作带来很大的麻烦,于是分类讨论之,我们记g(n)=(n+1)*(n+1)*(2n-1)。显然,当n为奇数时,g(n)能被4整除当n为偶数时,我们将g(n)等价转换为:n*n*(2n-1)+4*n*n-1,于是结论就显然了,g(n)+1一定能被4整除,这正是结果向上取整后的结果。接下来就用我上一题的方法如法炮制就行了。/* 阅读全文
posted @ 2011-10-28 21:47 moonbay 阅读(236) 评论(0) 推荐(0) 编辑
摘要: 题目蛮简单的,但是纠结了好久。原因倒不是推不出公式,而是推出公式以后不好办,因为公式是(n+2)*(n+1)*n/6,而n最大为10000000,这样的话即使用long long 也存不下。记得同余公式里关于除法的好像只有逆元的一些,上网找了一下,确定没有。于是只有自己继续推了。最后,自己终于证明了如下公式:不妨设a > b,r为a、b的公约数,则有(a/r)%(b/r) = (a%b)/r。不知道这个公式之前有没有人推出来过,反正自己挺有成就感的。其实也很好证明,如下:设(a/r)%(b/r) = z,则一定有且仅有一个k满足(a/r) = k(b/r) + z。从而得a = kb + 阅读全文
posted @ 2011-10-28 20:55 moonbay 阅读(182) 评论(0) 推荐(0) 编辑
摘要: 博弈问题,本来以为得好好找规律,仔细一看,n才1000,直接暴力过了~/* * hdu1847/win.cpp * Created on: 2011-10-27 * Author : ben */#include <cstdio>#include <cstdlib>#include <cstring>#include <cmath>#include <ctime>#include <iostream>#include <algorithm>#include <queue>#include <s 阅读全文
posted @ 2011-10-27 19:21 moonbay 阅读(211) 评论(0) 推荐(0) 编辑
上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 27 下一页