- 博客(10)
- 收藏
- 关注
原创 Ti5外卡赛模拟
前天一时兴起, 想用计算机模拟Ti5外卡赛和正赛来看看最后的结果如何,这样就能完成小金本的预测~ 现在记录一下一些有趣的东西。 外卡赛4只队伍CDEC, Vega, MVP 和 Archon, 问题的关键是如何模拟一场比赛的胜负。我最初的想法是查下有没有人研究过每支战队的MMR值与胜率之间的关系, 但是没有找到类似的结论。退而求其次, 我决定用MMR值作为一...
2015-07-26 23:55:17 307
原创 Unity3D入门(一) -- 环境搭建(2)
接上一节, 我们现在GameObject - 3DObject 选择quad, 将Inspector下属性positon 设置为(0, 0, 0),将Rotation的x设为90, 将Scale里x,y均设置为100.将quad重命名为Floor。 这么做的目的是, 我们想创建一个高度统一的平面。 由于我们之后要做RayCast, 但是...
2015-07-25 22:04:17 135
原创 Unity3D入门(一) -- (补充材料)光照
在Unity3D, 广义上分为两种光照 dynamic lighting 和 baked lighting. Dynamic lighting 是在游戏引擎运行时进行实时计算的, 而baked lighting 是预先计算好的光照,采用光照贴图(lighting texture map)的形式。 对于light c...
2015-07-25 11:25:28 237
原创 Unity3D入门(一) -- 环境搭建
http://unity3d.com/learn/tutorials/projects/survival-shooter-project 初入门Unity3D, 现在将学习官网的tutorial过程记录一下~,上面的链接即官网给出的视频资料。 从搭建一个小型的射击类游戏学习入门Unity3D, 什么都还不懂, 请多多谅解。 ...
2015-07-23 12:57:09 221
原创 Hihocoder --- 17周 LCA的在线算法
#include <iostream>#include <string>#include <map>#include <stack>#include <vector>#include <cstdlib>#include <stdio.h>using namespace std;
2014-10-26 12:20:55 104
原创 【转载】The diameter of the tree
http://www.quora.com/How-does-following-algorithm-for-finding-longest-path-in-tree-work 留作自己查看
2014-10-22 21:39:13 136
原创 Hihocoder --- 16周 RMG
#include <iostream>#include <cstdlib>#include <stdio.h>using namespace std;int weight[1000005];int segtree[1000005][22];int cal_pow(int x, int y){ if (y == 1) ...
2014-10-20 16:55:28 94
原创 Hihocoder --- 15周 LCA
#include <iostream>#include <string>#include <map>#include <stack>#include <vector>using namespace std;map<string, string> represent;map<pair...
2014-10-18 15:55:29 74
原创 算法概论 -- Chapter 0 Prologue
Fibonacci numbers: Introduction : F(n) = F(n-1) + F(n-2) , for n >= 2, and F(0) = 0, F(1) = 1 One approximation of F(n) is roughly , now I'm gonna prove it first. ...
2014-10-15 12:02:21 264
原创 Pyhon编程学习
--参考书目《Programming Python》(3rd Edition by Mark Lutz) Chapter2-----A Sneak Preview 这章旨在通过构建一个数据库来熟悉python操作和一些思想 Step 1:Representing Records 主要介绍了两种方法,list 和 dictionary,下逐一介绍 ...
2013-11-27 12:11:53 129
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人