In a world where ordinary people cannot reach, a boy named "Koutarou" and a girl named "Sena" are playing a video game. The game system of this video ...
分类:
其他好文 时间:
2018-09-13 22:40:48
阅读次数:
247
262144K In a world where ordinary people cannot reach, a boy named "Koutarou" and a girl named "Sena" are playing a video game. The game system of thi ...
分类:
其他好文 时间:
2018-09-13 01:18:33
阅读次数:
232
262144K Morgana is playing a game called cacti lottery. In this game, morgana has a 3 \times 33×3 grid graph, and the graph is filled with 11 ~ 99 , e ...
分类:
其他好文 时间:
2018-09-13 01:11:14
阅读次数:
178
不说了直接上代码: LoadingPanel: using UnityEngine;using System.Collections;using UnityEngine.UI;using UnityEngine.SceneManagement;public class LoadingPanel : ...
分类:
编程语言 时间:
2018-09-12 19:55:28
阅读次数:
204
一:注册微端项目需要在EgretLauncher中注册一个游戏,本文只做基础测试,所以使用的是Egret官方提供的测试地址:http://tool.egret-labs.org/Weiduan/game/index.html二:设置导出(创建Android工程目录)三:将生成好的Android项目导入到AndroidStudio中四:清理和编辑项目五:生成APK文件六:结果①,安装的程序注,如果需
分类:
移动开发 时间:
2018-09-12 12:33:04
阅读次数:
1514
有n个数字,不知道具体是多少,给q个信息。 每个信息给一个区间[l,r]。并告诉这个区间的奇数有多少个,问第一个错误的信息是第几个。 可以把每个区间的左端点-1的根看做右端点的根的根,用并查集维护一个到根点的1的个数是奇数还是偶数即可。 注意得离散化。 #include <cstdio> #incl ...
分类:
其他好文 时间:
2018-09-11 19:42:15
阅读次数:
124
Morgana is playing a game called End Fantasy VIX. In this game, characters have nn skills, every skill has its damage. And using skill has special con ...
分类:
其他好文 时间:
2018-09-10 00:53:52
阅读次数:
466
A Chess Game poj-2425 题目大意:题目链接 注释:略。 想法:这个题就是为什么必须要用记忆化搜索。因为压根就不知道后继是谁。 我们通过SG定理可知:当前游戏的SG值等于所有子游戏的SG的异或和。 我们就可以dp了。 最后,附上丑陋的代码... ... 小结:血泪教训:dfs那个v ...
分类:
其他好文 时间:
2018-09-09 22:18:18
阅读次数:
199
A mutiplication game poj-2505 题目大意:给定一个数n和p,两个选手每次可以将p乘上[2,9]。最先使得p大于n的选手胜利。 注释:$1\le n\le 4294967295$,$p=1$。 想法: 这个题比较新颖,我们可以直接推出必败态区间。 最后,附上丑陋的代码... ...
分类:
其他好文 时间:
2018-09-09 22:08:10
阅读次数:
139
I Love this Game! 题目大意:题目链接 注释:略。 想法: 开始的时候以为没法dp,结果...:a>0啊! 所以可以直接dp了啊! 状态:dp[i]表示先手选了a[i]的状态。 转移:sb转移。 最后,附上丑陋的代码... ... 小结:读题! ...
分类:
其他好文 时间:
2018-09-09 22:06:32
阅读次数:
184