题目链接 #include #include using namespace std; typedef long long ll; int main() { ll n; while(~scanf("%I64d",&n)) {//其实算是 贪心了吧 //先手想赢,他会x2,这样子才能尽量避免让后手赢 ...
分类:
其他好文 时间:
2016-03-05 06:52:50
阅读次数:
190
题目链接 #include #include #include using namespace std; int a[1005]; int main() { int n; while(~scanf("%d",&n)) {//要后者胜,只要s=0,那么n=(m+1)*r,输出最小的m即可 int le...
分类:
其他好文 时间:
2016-03-05 06:51:34
阅读次数:
161
GCC = GNU C Compiler, 下面简单介绍其使用。 1 预处理(pre-processing) $ gcc -E -o hello.i hello.c -E 预处理后停止 2 编译(compiling) $ gcc -S -o hello.s hello.i -S 编译后停止 3 汇编
分类:
系统相关 时间:
2016-03-05 06:52:03
阅读次数:
179
原题链接在这里:https://leetcode.com/problems/strobogrammatic-number-ii/ 题目: A strobogrammatic number is a number that looks the same when rotated 180 degrees
分类:
其他好文 时间:
2016-03-05 06:53:12
阅读次数:
587
前几天比赛的PWN题,简单写了下。 PWN400 漏洞是一个数组越界访问造成的任意地址读写。在对数据排序后,对数据进行查询和更新时,可以访问到数组以外一个元素(4个字节)。 程序中存在3种数据结构,第一种是用于存储排序数据的基本块。可以定义为: typedef struct chunk1{ int
分类:
其他好文 时间:
2016-03-05 06:51:13
阅读次数:
263
工欲善其事,必先利其器,没有好的工具,怎么能高效的开发出高质量的代码呢?本文为各ASP.NET 开发者介绍一些高效实用的工具,涉及SQL 管理,VS插件,内存管理,诊断工具等,涉及开发过程的各个环节,让开发效率翻倍。 Visual Studio Visual Studio Productivity
分类:
Web程序 时间:
2016-03-05 06:52:14
阅读次数:
223
题目链接 #include #include using namespace std; int main() { int n,k[1005]; int sum,cnt; while(scanf("%d",&n)&&n) { sum=0,cnt=0; for(int i=1;i=(sum^k[i]))...
分类:
其他好文 时间:
2016-03-05 06:52:32
阅读次数:
287
摘自 <<英语中级听力>> 是做鸡头还是凤尾? 是选择大城市还是小地方? 每个人在不同的时期都有不同的答案。 来看看这个英国的寓言, 年轻时见见"大池塘"的繁华, 年长后在被"鹭"吃掉之前, 回到属于自己的"小池塘", 或许才是人生真谛 - 返璞归真。 one upon a time a big,
分类:
其他好文 时间:
2016-03-05 06:52:07
阅读次数:
238
题目链接 #include #include #include using namespace std; int sg[2010]; int get_sg(int n) { if(n<0) return 0; if(sg[n]!=-1) return sg[n]; bool vis[2010]; /...
分类:
其他好文 时间:
2016-03-05 06:51:38
阅读次数:
152
题目链接 #include #include using namespace std; int main() { int n; while(scanf("%d",&n)&&n) {//alice先把环破坏,变成链,然后bob只要在链中间取1或2个 //连续的coins,让链变成左右对称的两条,bob...
分类:
其他好文 时间:
2016-03-05 06:51:28
阅读次数:
194
原文:Struts Tiles框架使用 Tiles框架 ++YONG原创,转载请声明 Tiles框架为创建Web页面提供了一种模板机制,它能将网页的布局和内容分离。它用模板定义网页布局,每个页面模板都是一个简单的 JSP 页,它定义了一些由占位符组成的外形,以放置内容。执行时,Tiles 将会用相应
分类:
其他好文 时间:
2016-03-05 06:49:42
阅读次数:
289
http://augus.github.io/ngAnimate/ http://www.nganimate.org/angularjs/ng-repeat/move http://codepen.io/ShMcK/pen/kHxKy http://codepen.io/kevinsmets/pen
分类:
Web程序 时间:
2016-03-05 06:50:51
阅读次数:
251
原题链接在这里:https://leetcode.com/problems/strobogrammatic-number/ 题目: A strobogrammatic number is a number that looks the same when rotated 180 degrees (l
分类:
其他好文 时间:
2016-03-05 06:49:04
阅读次数:
170
POJ 1704 题目链接 关于阶梯博弈有如下定理: 将所有奇数阶梯看作n堆石头,做Nim,将石头从奇数堆移动到偶数堆看作取走石头,同样地,异或值不为0(利己态)时,先手必胜。 定理证明看此博:http://blog.csdn.net/kk303/article/details/6692506 以下...
分类:
其他好文 时间:
2016-03-05 06:48:17
阅读次数:
177
原文:Spring实现AOP的4种方式 Spring AOP 详解 Spring实现AOP的4种方式 先了解AOP的相关术语:1.通知(Advice):通知定义了切面是什么以及何时使用。描述了切面要完成的工作和何时需要执行这个工作。2.连接点(Joinpoint):程序能够应用通知的一个“时机”,这
分类:
编程语言 时间:
2016-03-05 06:49:56
阅读次数:
243
夺命雷公狗---微信开发43----用户分组管理接口(改)
分类:
微信 时间:
2016-03-05 06:50:05
阅读次数:
399
Base64可以将二进制转码成可见字符方便进行http传输,但是base64转码时会生成“+”,“/”,“=”这些被URL进行转码的特殊字符,导致两方面数据不一致。我们可以在发送前将“+”,“/”,“=”替换成URL不会转码的字符,接收到数据后,再将这些字符替换回去,再进行解码。PHP: /** * URL base64解码 * '-' -> '+' * '_' ->...
分类:
Web程序 时间:
2016-03-05 01:45:06
阅读次数:
288