题目链接:HDU 2414 Chessboard Dance
题意:给出一张图,>,
强行模拟一遍,注意下面给出的案例。
>t.p.p.p
...a....
........
...bfg.y
...c...
...d....
...e....
........
move 3
turn right
move 3
turn left
move 3
turn left
move 3
#
...
分类:
其他好文 时间:
2014-10-04 11:46:06
阅读次数:
224
这篇文章里要介绍的是非常精彩的 Aztec 钻石模型。我觉得这是一个可以进入 "数学天书" 的问题,它的表述简单而初等,但是却与计数组合学中许多最深刻美妙的问题有着千丝万缕的联系,当然它还有一个令人拍案叫绝的解法。所有这些不能不让我把它写出来和大家分享。那么什么是 Aztec 钻石模型呢?很简单:依...
分类:
其他好文 时间:
2014-10-03 01:52:43
阅读次数:
358
第一题:题目大意:50*50的格子里玩贪吃蛇。给出N步扭头的操作,判断贪吃蛇会在第几步挂掉。(蛇初始向东)解题过程:1.一开始的方法是:为了加快速度,只保存头和尾的坐标,然后保存尾巴的方向,每次move先头运动,然后尾巴按照之前的方向运动直到需要改变方向(继续按之前的方向运动将撞到墙壁或者走到一个m...
分类:
其他好文 时间:
2014-10-02 00:52:12
阅读次数:
388
Given a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row below.
For example, given the following triangle
[
[2],
[3,4],
[...
分类:
其他好文 时间:
2014-10-01 19:09:51
阅读次数:
144
当最大连接数比較小时,可能会出现“1040 too many connection”错误。能够通过改动配置文件来改动最大连接数,但我连配置文件在哪都不知道,应该怎么办呢?首先须要重新启动mysql服务,运行命令:service mysql restart也有可能是:service mysqld re...
分类:
数据库 时间:
2014-10-01 15:02:21
阅读次数:
292
Skipped: sound engine, GUINative support webGL/html5, chrome will soon discard plugins, IE soon too, firefox already, safari unknownMobile supportHDR,...
分类:
其他好文 时间:
2014-10-01 14:03:41
阅读次数:
216
一、使用ALTERTABLESPACE来移动数据文件移动数据文件在调整表空间大小时有可能会用到,使用的是ALTERTABLESPACE命令。但是要注意的是,在进行此项操作之前,首先应将tablespace设为offline,第二,需要确定目标数据文件是存在的。======查询当前表空间信息=======SQL>select..
分类:
移动开发 时间:
2014-10-01 09:27:04
阅读次数:
376
400 Bad RequestRequest header or cookie too large. Sorry for the inconvenience.Please report this message and include the following information to us....
分类:
Web程序 时间:
2014-09-30 19:46:19
阅读次数:
228
In linux, you can use the ncurses library to use the terminal as a text buffer: move the cursor around, and write text. It can also draw windows and o...
分类:
其他好文 时间:
2014-09-30 18:43:59
阅读次数:
154
Big Christmas Tree
题目分析:
叫你构造一颗圣诞树,使得 (sum of weights of all descendant nodes) × (unit price of the edge)尽量的小。转换后就是求根节点到每个节点的距离最短,也就是最短路。生成树可能会超时,我没试过。然后,求解最短路要用优化的解法不然会超时。最后的答案就是:sum = w[1]...
分类:
其他好文 时间:
2014-09-30 15:00:19
阅读次数:
173