暗黑世界游戏名称:《暗黑世界》游戏终端:安卓(android)/IOS游戏类型:卡牌类游戏版本:V1.4.1服务器框架:Firefly Game Server Framework V1.2.1客户端引擎:Cocos2d-x 2.1.4服务器运行环境:CentOS 5.0+客户端开发环境:Xcode ...
分类:
其他好文 时间:
2014-06-27 13:41:44
阅读次数:
362
Given an array of non-negative integers, you are initially positioned at the first index of the array.
分类:
其他好文 时间:
2014-06-27 11:51:49
阅读次数:
213
Triangle War
Time Limit: 1000MS
Memory Limit: 65536K
Total Submissions: 2685
Accepted: 1061
Description
Triangle War is a two-player game played on the following tria...
分类:
其他好文 时间:
2014-06-27 09:34:45
阅读次数:
286
10368 - Euclid's Game
题目链接
题意:Stan和Ollie玩游戏,有两个数字a,b,每次可以选择较小数字的倍数,把另一个数字-去这个数,要保证>= 0,最后谁那步能得出0谁就赢了,问谁会赢。
思路:其实这个相减的过程就是一个辗转相除的过程,考虑每一次辗转相除,如果只有1倍的数可以减,那么必须到下一步,如果有多步,先手的就有机会选择是自己到下一步或者让对方到下...
分类:
其他好文 时间:
2014-06-27 08:52:30
阅读次数:
886
【Awake & Start】MonoBehaviour.Awake() Awake is used to initialize any variables or game state before the game starts. Awake is called only once during....
分类:
其他好文 时间:
2014-06-26 00:37:37
阅读次数:
293
【Application.LoadLevel】 只有在File->Build Setting中设置了的按钮才能被加载。 当level加载完成后,MonoBehaviour.OnLevelWasLoaded is called on all active game objects。 When...
分类:
移动开发 时间:
2014-06-25 19:43:36
阅读次数:
254
11.1这道题要注意使用了line strip,由于曾经一直用triangle list,所以在几何渲染的时候easy算错定点描绘的顺序。贴一些代码,大概就能把这个问题解释清楚了,由于框架还不是特别熟,所以是在原有样例的基础上建立的自己的代码void TreeBillboardApp::BuildC...
分类:
其他好文 时间:
2014-06-25 17:11:30
阅读次数:
462
题目链接:uva 10843 - Anne's game
题目大意:给出n,问说有n个节点构成的标号树有多少种。
解题思路:cayley定理的躶题。
#include
#include
typedef long long ll;
const ll MOD = 2000000011;
ll Pow (ll x, ll n) {
if (n 0)
ret...
分类:
其他好文 时间:
2014-06-24 23:46:31
阅读次数:
239
The android provide two types of animation.Tween Animation is one,such as rotation,translation,scale,gradual change(gradient).
main types:
Animation、AlphaAnimation、RotateAnimation、ScaleAnimation...
分类:
移动开发 时间:
2014-06-22 08:29:06
阅读次数:
239
dp[i][j]:还有i个不相同的位置,还能走j步,一共有多少种走法。
很明显
dp[i][j]=sigm(dp[i-k][j-1]*c[i][k]*c[n-i][m-k]);
用记忆化搜索记忆一下即可。
#include
#include
#include
#include
#include
#include
#include
using namespace std;
#define m...
分类:
其他好文 时间:
2014-06-22 08:07:31
阅读次数:
203