1、首先在BIOS中把启动选项设置成DVD光驱启动或者USB启动也是可以的2、从光盘启动之后再出现的选项中选择“Rescue installed system”然后按回车确认,具体图下图: 3、语言选择,这里我们选择默认的就可以了,因为不是图形化得,所以没有办法支持中文,键盘也选择默认然后按回车,具...
分类:
其他好文 时间:
2015-09-21 12:18:08
阅读次数:
225
、首先,要有一张CentOS 6.4的安装介质,使用介质启动电脑出现如下界面界面说明:Install or upgrade an existing system 安装或升级现有的系统install system with basic video driver 安装过程中采用基本的显卡驱动Rescue...
分类:
其他好文 时间:
2015-09-12 18:48:43
阅读次数:
179
题目:http://acm.hdu.edu.cn/showproblem.php?pid=1242大意:迷宫搜索,'#'代表墙,'.'代表路,'x'代表守卫,每移动1格用1秒,杀死守卫用1秒,angel('a'表示)的朋友们(用'r'表示),要去救她,问最短时间为多少?分析:迷宫搜索,dfs总结:注...
分类:
其他好文 时间:
2015-09-10 20:57:32
阅读次数:
194
Rescue
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 398 Accepted Submission(s): 296
Problem Description
I work at NASA outer ...
分类:
其他好文 时间:
2015-08-26 12:10:29
阅读次数:
151
Rescue
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 21713 Accepted Submission(s): 7748
Problem Description
Angel was caught b...
分类:
其他好文 时间:
2015-08-20 20:52:29
阅读次数:
135
1003. Emergency (25)As an emergency rescue team leader of a city, you are given a special map of your country. The map shows several scattered cities ...
分类:
其他好文 时间:
2015-08-20 18:36:57
阅读次数:
109
Rescue
Time Limit: 6000/3000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others)
Total Submission(s): 814 Accepted Submission(s): 198
Problem Description
The princess is trapp...
分类:
其他好文 时间:
2015-08-19 16:47:50
阅读次数:
120
Rescue
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 21701 Accepted Submission(s): 7745
Problem Description
Angel was caught b...
分类:
其他好文 时间:
2015-08-19 13:30:00
阅读次数:
120
新模板 1 /* 2 HDU 4273 Rescue 3 给一个三维凸包,求重心到表面的最短距离 4 模板题:三维凸包+多边形重心+点面距离 5 */ 6 7 #include 8 #include 9 #include 10 #include 11 #include 12 us...
分类:
其他好文 时间:
2015-08-15 16:23:48
阅读次数:
133
题目地址:http://acm.hdu.edu.cn/showproblem.php?pid=1242
这道题目我是用BFS+优先队列做的。听说只用bfs会超时。
因为这道题有多个营救者,所以我们从被营救者开始bfs,找到最近的营救者就是最短时间。
先定义一个结构体,存放坐标x和y,还有到达当前点(x,y)消耗的时间。
struct node {
i...
分类:
其他好文 时间:
2015-08-14 21:30:35
阅读次数:
123