最近一段时间一直在用别人封装好,配置好的日志类记录日志,感觉挺好奇的。下面就记录一下用log4j处理日志的常用用法。至于log4j是什么,我不清楚,暂时也觉得没必要太深入,只知道是处理日志比较好的选择。Game Starts参考文档 1)官方pdf文档 2)配置log4j(和详细) 3)Log...
分类:
其他好文 时间:
2014-09-24 02:31:33
阅读次数:
251
题意:给一串数字,每次查询[L,R]中两个数的gcd的最大值。解法:容易知道,要使取两个数让gcd最大,这两个数最好是倍数关系,所以处理出每个数的所有倍数,两两间根据倍数关系形成一条线段,值为该数。那么每次查询[L,R]之间两数gcd的最大值即为查询[L,R]中值最大的线段,离线所有的查询数据,然后...
分类:
其他好文 时间:
2014-09-23 21:45:35
阅读次数:
249
Given an array of non-negative integers, you are initially positioned at the first index of the array.
Each element in the array represents your maximum jump length at that position.
Your goal i...
分类:
其他好文 时间:
2014-09-23 20:15:26
阅读次数:
142
Alice and Bob
Problem Description
Alice and Bob's game never ends. Today, they introduce a new game. In this game, both of them have N different rectangular cards respectively. Alice wants to us...
分类:
其他好文 时间:
2014-09-23 20:09:26
阅读次数:
239
n堆石子,两个人轮流取,每次可以在一堆石子中取至少一个石子,并可以选择将剩下的石子分成任意的两堆,最后取走的获胜,问谁会获胜。比裸nim多了一个条件就是可以将剩下的石子分开,原来是1的位拆分后变成一个1和一个0,原来是0的拆分后变成1和1或者0和0,都不改变nim的必胜或必败状态,所以直接异或。#i...
分类:
其他好文 时间:
2014-09-23 20:02:15
阅读次数:
162
Flip Game
Time Limit: 1000MS
Memory Limit: 65536K
Total Submissions: 31140
Accepted: 13551
Description
Flip game is played on a rectangular 4x4 field with two-sided p...
分类:
其他好文 时间:
2014-09-23 15:16:14
阅读次数:
167
题意:这是翻棋游戏,给定4*4棋盘,棋子一面为黑色(用b表示),另一面为白色(用w表示),问至少要几步可以将棋子翻为全黑或者全白,如不能达到目的,输出“Impossible ”
翻转规则:可以选定16个棋子中的任意一个,将其本身以及上下左右相邻的翻转过来
分析:其实每格棋子最多只可以翻转一次(实际是奇数次,但与翻转一次状态一样),只要其中一格重复翻了2次(不论是连...
分类:
其他好文 时间:
2014-09-23 10:39:44
阅读次数:
211
创建android app,编译后生成apk,手机安装后无法运行,弹出以下错误:JS errorreport errorassets/egret-game/libs/core/egret/context/devices/nativedevicecontext.js:203:egret_native....
分类:
移动开发 时间:
2014-09-22 23:47:03
阅读次数:
735
The kth great number
Xiao Ming and Xiao Bao are playing a simple Numbers game. In a round Xiao Ming can choose to write down a number, or ask Xiao Bao what the kth great number is. Because the numb...
分类:
其他好文 时间:
2014-09-22 19:12:13
阅读次数:
197
What do Leonard Nimoy, Stana Katic, and RobertDowney Jr. have in common? They all have a Bacon number of 2. The Six Degreesof Kevin Bacon, a game crea...
分类:
其他好文 时间:
2014-09-22 06:43:22
阅读次数:
181