【Tags and Layers】1、tags and layers 配置面板。"Edit" -> "Project Settings" -> "Tags and Layers"来打开设置面板。 2、tag可以理解为一类元素的标记,如hero、enemy、apple-tree等。通过设置tag,可....
分类:
其他好文 时间:
2014-06-28 16:00:08
阅读次数:
264
http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=5300
大致题意:给出一个无向图,以及起点与终点。要删除一些边使得起点与终点不连通,在删掉边的权值之和最小的情况下要求删除的边数尽量少。求出一个比值:剩余边数权值和/删除的边数。
思路:删除边的权值之和最小显然是求最小割即最大流。但同时要求删除边数最少,解决方...
分类:
其他好文 时间:
2014-06-27 08:08:26
阅读次数:
177
该分手的八大征兆Relationships are important – to each other, to our families, to our friends, to the people we care about. There comes a point in romantic rel...
分类:
其他好文 时间:
2014-06-26 23:29:21
阅读次数:
355
如果不需要求边的个数的话,就是一个裸的最小割问题。
求边的个数就用边的权值记录一下。
#include
#include
#include
#include
#include
using namespace std;
#define INF 99999999
#define LL long long
const LL maxn =55;
const LL maxm =4400;
con...
分类:
其他好文 时间:
2014-06-22 11:15:00
阅读次数:
167
这题一看就应该知道是二分图匹配……我记得有个类似的题有一个并查集的解法,但是我找不到了…… 1 var
i,n,m:longint; 2 p:array[0..1500] of longint; 3 v:array[0..1500] of boolean; 4
a:array...
分类:
其他好文 时间:
2014-06-08 21:35:20
阅读次数:
297
Hero In Maze
时间限制(普通/Java):1000MS/10000MS 运行内存限制:65536KByte
描述
500年前,Jesse是我国最卓越的剑客。他英俊潇洒,而且机智过人^_^。
突然有一天,Jesse心爱的公主被魔王困在了一个巨大的迷宫中。Jesse听说这个消息已经是两天以后了,他知道公主在迷宫中还能坚持T天,他急忙赶到迷宫,开...
分类:
其他好文 时间:
2014-06-07 12:11:11
阅读次数:
225
主角出场:
初始化主角
hero = new GameObjHero();
hero->setScale(0.5);
hero->setPosition(ccp(100,160));
hero->setVisible(false);
addChild(hero,1);
进入GameObjHero类ccp文件
创建主角及动作
this->setC...
分类:
其他好文 时间:
2014-06-05 08:51:31
阅读次数:
181
HTML中META属性详解meta是html语言head区的一个辅助性标签。几乎所有的网页里,我们可以看到类似下面这段的html代码:
<head> <meta http-equiv= "content-Type " content= "text/html; charset=gb2312
">...
分类:
Web程序 时间:
2014-05-02 12:02:03
阅读次数:
314
Get Luffy OutTime Limit:2000MSMemory
Limit:65536KTotal Submissions:7295Accepted:2778DescriptionRatish is a young man
who always dreams of being a hero...
分类:
其他好文 时间:
2014-05-01 04:56:26
阅读次数:
392