背景:做了这么久的题,唯一一道一次ac的,可见这道题是如何的简单。
思路:思路很清楚的模拟题,先排序再查找。
学习:sort函数和lower_bound函数,sort函数排序就不多说了,lower_bound函数作用是查找一个数组中大于等于x的第一个位置。#include
#include
#include
using namespace std;
int figue[10000];
v...
分类:
其他好文 时间:
2015-02-05 23:25:29
阅读次数:
176
问题描述:public void save(BaseEntity baseEntity) { Session session = null; try { session = currentSession(); session.s...
分类:
Web程序 时间:
2015-02-03 16:33:33
阅读次数:
145
1 /* 2 3 4 L (>=60), the lower bound of the qualified grades -- 5 that is, only the ones whose grades of talent and virtue are both not below...
分类:
其他好文 时间:
2015-02-01 08:28:31
阅读次数:
171
题意 从4个n元集中各挑出一个数 使它们的和为零有多少种方法
直接n^4枚举肯定会超时的 可以把两个集合的元素和放在数组里 然后排序 枚举另外两个集合中两元素和 看数组中是否有其相反数就行了 复杂度为n^2*logn
#include
#define l(i) lower_bound(s,s+m,i)
#define u(i) upper_bound(s,s+m,i)
using...
分类:
其他好文 时间:
2015-01-29 12:47:43
阅读次数:
196
/A匹配缓冲区的起始点;/Z匹配缓冲区的结束点;关于它们的使用,详细参见代码。/d表示数字,/d{3}表示一个三位数的数字,{}表示约束运算符(bound operator),表示要重复3次;和//d//d//d的效果一样;重复符+:表示前面的表达式可以重复,但是必须至少重复一次;比如:[a-zA-...
分类:
其他好文 时间:
2015-01-28 17:40:01
阅读次数:
188
ASP.NET: http://www.screencast.com/t/OHhcHD9vyWinForms:http://www.screencast.com/t/8M8K4eskkYO9
分类:
移动开发 时间:
2015-01-24 11:36:57
阅读次数:
176
题意:
给n个数,他们两两之间较大数减去较小数总共有n*(n-1)/2个数,要求这些数的中位数。
分析:
两次二分,第一次枚举答案,第二次判断该数是否可能成为中位数。
代码:
//poj 3579
//sep9
#include
#include
using namespace std;
const int maxN=1e5+10;
int a[maxN];
int n,m;
in...
分类:
其他好文 时间:
2015-01-22 01:49:51
阅读次数:
338
ID3D11DeviceContext::PSSetShaderResources: Resource being set to PS shader resource slot 0 is still bound on output! Forcing to NULL. [ STATE_SETTING ...
分类:
其他好文 时间:
2015-01-13 23:12:06
阅读次数:
230
1、错误描述:输入url,浏览器报404错误控制台报错信息有:Did not find handler method for错误原因:没有在controller中加上注解 @Controller 所以Spring容器不会识别该处理方法;2、错误描述:Invalid bound statement (...
分类:
其他好文 时间:
2015-01-12 19:08:40
阅读次数:
111
有关于查找基本的库函数有find(),find_if,binary_search(),lower_bound(),upper_bound(),equal_range()另外bind1st(greater,15),bind2nd(greater,15),greater(15,x),count_if()...
分类:
其他好文 时间:
2015-01-08 14:43:06
阅读次数:
156