stair climbing, print out all of possible solutions of the methods to climb a stars, you are allowed climb one or two steps for each time; what is tim...
分类:
其他好文 时间:
2015-03-15 12:14:56
阅读次数:
130
DescriptionFleeting time does not blur my memory of you. Can it really be 4 years since I first saw you? I still remember, vividly, on the beautiful Z...
以下是显示后的图片,相信在很多网站上都能看到这种效果,目前我知道两种实现方式1、background-position加上一张图片 图片:http://www.brookstone.com/webassets/pwr/engine/images/stars.gif 1 2 3 4 5 ...
分类:
Web程序 时间:
2015-03-11 21:13:58
阅读次数:
166
DescriptionAstronomers often examine star maps where stars are represented by points on a plane and each star has Cartesian coordinates. Let the level...
分类:
编程语言 时间:
2015-03-07 11:22:42
阅读次数:
150
#include
#include
#include
using namespace std;
const int maxn=15010;
const int maxlen=32010;
int tree[4*maxn];
int lowbit(int n)
{
return (n&-n);
}
int getsum(int i)
{
int sum=0...
分类:
编程语言 时间:
2015-03-06 17:03:57
阅读次数:
138
"""gui start file for Space-Time Analysis of Regional Systems#STARS的图形用户界面入口(高级用户可以直接使用命令行方式进行操作)-----------------------------------------------------...
分类:
编程语言 时间:
2015-02-23 16:40:34
阅读次数:
249
进入STARS后,最简单的学习方法就是演示示例数据。对于源码的分析也可以从这里入手。以下为出发菜单项“Example Project”的函数example:def example(self): """canned loading of data files and matrices for debu...
分类:
编程语言 时间:
2015-02-23 16:39:59
阅读次数:
317
STARS的一般使用可以通过REGAL网页快速学习http://regionalanalysislab.org/?n=STARS再次不做详细介绍这里关注的主题是对STARS源代码分析即为使用Python直接从底层开发GIS的过程STARS 0.8.2版本的下载链接中提供了两种类型:安装包和源代码包安...
分类:
编程语言 时间:
2015-02-23 16:36:55
阅读次数:
210
链接:
http://poj.org/problem?id=2352
题目大意:
在坐标上有n个星星,如果某个星星坐标为(x, y), 它的左下位置为:(x0,y0),x0
按照y递增,如果y相同则x递增的顺序给出n个星星,求出所有level水平的数量。
思路:
由于输入的顺序,对于第i颗星星,它的等级是之前输入的星星中,横坐标x小于等于i星横坐...
分类:
编程语言 时间:
2015-02-22 11:04:22
阅读次数:
198
题意:计算星星的等级。
星星的等级是由有多少 x 坐标小于它并且 y 坐标也小于它的星星的数量决定的。
由于输入已经是按照 先y从小到大,再x从小到大的顺序排列好了的。
所以 只需要按输入顺序插入,然后统计比当前x小的有多少个即可。
只需要一个logn的修改和查询的数据结构就可以了。
以前用数状数组写过,现在再补一个线段树的。
线段树:
#include
#inclu...
分类:
其他好文 时间:
2015-02-16 18:27:32
阅读次数:
161