Building a Space StationTime Limit:1000MSMemory Limit:30000KTotal Submissions:5173Accepted:2614DescriptionYou are a member of the space station engine...
分类:
其他好文 时间:
2015-06-04 11:46:02
阅读次数:
112
环境:mysql-5.6.25-winx64,MySQL workbench
问题:MySQL更新时出现异常:
warning(s): 1366 Incorrect string value: '\xE8\x82\x96\xE5\xB1\xB1...' for column 'sub_station_name'
解决:
1、数据库schema字符集设置为utf-8
2、...
分类:
数据库 时间:
2015-06-04 06:15:46
阅读次数:
340
http://acm.hdu.edu.cn/showproblem.php?pid=2645找出每个点到距离最近的车站的距离。直接bfs就好。 1 #include 2 #include 3 #include 4 using namespace std; 5 int n,m; 6 int ma...
分类:
其他好文 时间:
2015-06-02 21:45:43
阅读次数:
159
Gas Station Total Accepted: 39396 Total Submissions: 153479There are N gas stations along a circular route, where the amount of gas at station i is ga...
分类:
编程语言 时间:
2015-06-02 12:51:39
阅读次数:
139
我们通过一个例子来体会scala对象的构造过程
首先创建一个车站类:
class Station {
val size = 100
val spots = new Array[String](size)
}
通过size来模拟停车位数,通过字符串数组模拟具体的停车位。
在创建一个停车场类,它是车站的子类
class Park extends Station {
...
分类:
其他好文 时间:
2015-05-26 16:10:44
阅读次数:
174
Channel AllocationTime Limit:1000MSMemory Limit:10000KTotal Submissions:12983Accepted:6649DescriptionWhen a radio station is broadcasting over a very ...
分类:
其他好文 时间:
2015-05-25 17:56:24
阅读次数:
129
用Python计算北京地铁的两站间最短换乘路线地铁数据地铁数据用字典表示:
{station:{neighbor1:line number,neighbor2:line number,…},station2:{…},…}
现在我们有地铁的站名,下面就是如何将地铁站名转化为上面所需要的标准字典格式。
从网上找到的地铁站名为字符串:line1=u'''苹果园 古城路 八角游乐园 八宝山 玉泉路 五...
分类:
编程语言 时间:
2015-05-25 10:12:15
阅读次数:
192
感谢这篇文章的作者: http://www.cnblogs.com/strugglesometimes/p/4231359.html编译是个很蛋疼的事情,本想把linux0.12在bochs上跑起来然后就可以各模块的学习,没想各种问题。问题1:1 gas -c -o boot/head.o boot...
分类:
系统相关 时间:
2015-05-22 00:20:11
阅读次数:
785
DescriptionThe most important part of a GSM network is so called Base Transceiver Station (BTS). These transceivers form the areas called cells (this ...
分类:
其他好文 时间:
2015-05-19 16:17:59
阅读次数:
160
There areNgas stations along a circular route, where the amount of gas at stationiisgas[i].You have a car with an unlimited gas tank and it costscost[...
分类:
其他好文 时间:
2015-05-16 17:57:56
阅读次数:
94