gg,y一下就是每一个点到根的距离用rank维护,,#include #include #include #include #include #include #include #include using namespace std;#define mod 1000000007#define ll...
分类:
其他好文 时间:
2014-09-28 22:42:25
阅读次数:
140
Sep2722:29:09athCompute77kernel:EDACMC1:CErow0,channel0,label"CPU_SrcID#1_Channel#0_DIMM#0":2Unknownerror(s):memoryscrubbingonFATALareaOVERFLOW:cpu=1Err=0008:00c2(ch=2),addr=0xbfd630000=>socket=1,Channel=0(mask=1),rank=1
Sep2722:29:09athCompute77kernel:..
分类:
其他好文 时间:
2014-09-28 02:50:11
阅读次数:
1401
一定要判断好边界条件,edge case很关键。 1 #include 2 #include 3 using namespace std; 4 5 class Solution { 6 public: 7 int maxProfit(vector &prices) { 8 ...
分类:
其他好文 时间:
2014-09-27 19:02:20
阅读次数:
202
Codeforces round 269 div2 刷题历程。。。 tot rank 220....
分类:
其他好文 时间:
2014-09-27 10:26:29
阅读次数:
223
// EnumSort.cpp : 定义控制台应用程序的入口点。
//枚举排序
/*
枚举排序(Enumeration Sort)是一种最简单的排序算法,通常也称为秩排序(Rank Sort)。
该算法的具体思想是(假设按关键字递增排序),对每一个待排序的元素统计小于它的所有元素的个数,从而得到该元素最终处于序列中的位置。
假定待排序的n个数存在a[1]…a[n]中。首先将a[1]与a[2]…a[...
分类:
其他好文 时间:
2014-09-26 12:54:08
阅读次数:
187
技巧及注意:细节方面十分重要,你要想啊,敢出模拟题一定有出模拟题的原因~出题人一定会放很多坑给你,所以在码之前一定要先有大概的思路框架,然后在写代码中思考比如说这题:【BZOJ】3300: [USACO2011 Feb]Best Parenthesis(模拟)一开始我没注意边界问题,所以一直爆wa。...
分类:
其他好文 时间:
2014-09-26 09:03:38
阅读次数:
195
Problem:Say you have an array for which theithelement is the price of a given stock on dayi.If you were only permitted to complete at most one transac...
分类:
其他好文 时间:
2014-09-25 21:10:47
阅读次数:
171
题目信息:
1012. The Best Rank (25)
时间限制
400 ms
内存限制
32000 kB
代码长度限制
16000 B
判题程序
Standard
作者
CHEN, Yue
To evaluate the performance of ou...
分类:
其他好文 时间:
2014-09-25 20:00:37
阅读次数:
199
oracle分析函数十分强大,我们只要掌握这些方法,更直接的说法就是知道这些分析函数的作用就能完成很多工作。
下边贴出这些函数,及简单应用。
其中我想对lag()和lead()函数坐下说明:lag()本身是延后的意思也就是延后出现某列的数,而lead()有引领、领先的意思也就是提前几行显示某列数据
RANK()
dense_rank()
【语法】RANK ( ) OVER ( [qu...
分类:
数据库 时间:
2014-09-25 12:31:18
阅读次数:
297
在这里写下模板。以后方便用#include #include #include #include #include #define max_size 3000using namespace std;const int best_size = max_size - 20;struct node{ .....
分类:
其他好文 时间:
2014-09-25 00:11:47
阅读次数:
208