环境:比如在一个销售数据里面,用户既要选择年,又要选择月,还要选择日,或者是随意选择其中的一个作为筛选条件,如果是Cube的话是可以通过拖拉不同的维度层级来实现该功能的,但是如果是FM开发的DMR模型呢?答案就是采用ReportStudio中的树状提示,可以实现层级选择的效果.如下图1:拖一个树状提...
分类:
其他好文 时间:
2014-08-19 16:14:34
阅读次数:
206
Problem Description
Astronomers often examine star maps where stars are represented by points on a plane and each star has Cartesian coordinates. Let the level of a star be an amount of the stars tha...
分类:
其他好文 时间:
2014-08-18 23:37:23
阅读次数:
306
题意:就是给出一串数,当依次在将第一个数变为最后一个数的过程中,要你求它的最小逆序数。
思路:可以用树状数组和线段数做。这里我是用线段树做的。建的是一棵空树,然后每插入一个点之前,统计大于这个数的有多少个,直到所有的数都插入完成,就结果了逆序树的统计。
要得出答案主要是利用了一个结论,如果是0到n的排列,那么如果把第一个数放到最后,对于这个数列,逆序数是减少a[i],而增加n-1-a[...
分类:
其他好文 时间:
2014-08-18 18:44:42
阅读次数:
169
A Simple Problem with IntegersCrawling in process...
Crawling failed
Time Limit:5000MS
Memory Limit:131072KB
64bit IO Format:%I64d & %I64u
Submit
Status
Practice
POJ 3468
D...
分类:
其他好文 时间:
2014-08-18 18:39:12
阅读次数:
175
基本思想和线段树求解逆序数是一样的,前一篇《求逆序对 线段树版》也介绍过,先对输入数组离散,数组里的元素都不相同可以直接hash,存在相同的数话可以采用二分。
离散化后对于每个f[i],找到f[i]+1~ n中的个数,也就是到i这个位置,一共有多少比f[i]大的数,统计之后在将f[i]的位置上的数量加1。
这样一来统计的就是类似a[i]~n的和,可以想象成 把树状数组反过来统计,即统计的时候加...
分类:
其他好文 时间:
2014-08-18 16:30:22
阅读次数:
169
Problem Description
Teacher Mai finds that many problems about arithmetic function can be reduced to the following problem:
Maintain an array a with index from 1 to l. There are two kinds of ope...
分类:
其他好文 时间:
2014-08-18 16:26:42
阅读次数:
248
2014_8_15CodeForces 261 DIV2A.Pashmak and Garden简单题B.Pashmak and Flowers 简单题C. Pashmak and Buses 好题!k进制的应用D.Pashmak and Parmida's problem简单题! 统计+树状数组E...
分类:
其他好文 时间:
2014-08-17 18:23:42
阅读次数:
139
题意:给出数组A,定义f(l,r,x)为A[]的下标l到r之间,等于x的元素数。i和j符合f(1,i,a[i])>f(j,n,a[j]),求有多少对这样的(i,j).解法:分别从左到右,由右到左预处理到某个下标为止有多少个数等于该下标,用map维护。然后树状数组更新每个f(j,n,a[j]),预处理...
分类:
其他好文 时间:
2014-08-17 15:28:02
阅读次数:
159
Codeforces Round #261 (Div. 2)459D. Pashmak and Parmida's problem(求逆序数对)...
分类:
其他好文 时间:
2014-08-17 10:27:12
阅读次数:
255