码迷,mamicode.com
首页 > 2014年06月27日 > 全部分享
3527: [Zjoi2014]力 - BZOJ
题目大意:给出n个数qi,定义 Fj为 令 Ei=Fi/qi,求Ei。看了很久题解,终于有些眉目,因为知道要用FFT,所以思路就很直了其实我们就是要±1/(j-i)^2 ( i-j大于0时为正,小于0时为负 ) 和 qi 的乘积要算到j这个位置上,这个满足卷积,所以用FFT优化,但是j-i有负...
分类:其他好文   时间:2014-06-27 12:09:57    阅读次数:184
java中this的几种用法
1.当成员变量和局部变量重名时,在方法中使用this时,表示的是该方法所在类中的成员变量。(this是当前对象自己)如:publicclassHello {Strings="Hello";publicHello(String s) {System.out.println("s = "+ s);Sys...
分类:编程语言   时间:2014-06-27 12:10:35    阅读次数:124
[leetcode] Search in Rotated Sorted Array
Suppose a sorted array is rotated at some pivot unknown to you beforehand.
分类:其他好文   时间:2014-06-27 12:11:09    阅读次数:181
[leetcode] Combination Sum
Given a set of candidate numbers (C) and a target number (T), find all unique combinations in C where the candidate numbers sums to T.
分类:其他好文   时间:2014-06-27 12:11:50    阅读次数:337
2006: [NOI2010]超级钢琴 - BZOJ
Description小Z是一个小有名气的钢琴家,最近C博士送给了小Z一架超级钢琴,小Z希望能够用这架钢琴创作出世界上最美妙的音乐。 这架超级钢琴可以弹奏出n个音符,编号为1至n。第i个音符的美妙度为Ai,其中Ai可正可负。 一个“超级和弦”由若干个编号连续的音符组成,包含的音符个数不少于L且不多于...
分类:其他好文   时间:2014-06-27 12:12:34    阅读次数:250
[leetcode] 4Sum
Given an array S of n integers, are there elements a, b, c, and d in S such that a + b + c + d = target? Find all unique quadruplets in the array whic...
分类:其他好文   时间:2014-06-27 12:13:18    阅读次数:207
check_mk自定义监控增加性能数据图形展示
在nagios中可以实现性能图形展示,利用的是PNP4Nagios,check_mk当然也可以,而且很简单。这篇文章在前一篇文章《check_mk自定义监控实践之powershell》的基础之前,脚本稍作修改1、客户端process_top5.ps1$dp = (Get-Process) | sel...
分类:其他好文   时间:2014-06-27 12:14:00    阅读次数:254
[leetcode] Next Permutation
Implement next permutation, which rearranges numbers into the lexicographically next greater permutation of numbers.
分类:其他好文   时间:2014-06-27 12:14:44    阅读次数:191
Hadoop技术内幕HDFS-笔记1
书籍学习——董西成《Hadoop技术内幕 深入解析HADOOP COMMON和HDFS架构设计与实现原理》HDFS 高容错,高伸缩性Lucene是引擎开发包,提供了一个纯java的高性能全文检索,可方便的嵌入到各种应用中实现全文搜索/索引功能。Nutch是以Lucene为基础实现的搜索引擎应用,Lu...
分类:其他好文   时间:2014-06-27 12:15:57    阅读次数:221
[leetcode] Count and Say
The count-and-say sequence is the sequence of integers beginning as follows:
分类:其他好文   时间:2014-06-27 12:15:20    阅读次数:212
[leetcode] Remove Element
Given an array and a value, remove all instances of that value in place and return the new length.
分类:其他好文   时间:2014-06-27 12:17:58    阅读次数:156
CSS透明属性详解
.transparent_class { filter:alpha(opacity=50); -moz-opacity:0.5; -khtml-opacity: 0.5; opacity: 0.5;}上面的几个属性分别是:opacity: 0.5; 这是最重要的,因为它是CSS标准.该属性支持Fir...
分类:Web程序   时间:2014-06-27 12:17:13    阅读次数:220
Libevent 定时器
先摘一点网上的介绍libevent是一个事件触发的网络库,适用于windows、linux、bsd等多种平台,内部使用select、epoll、kqueue等系统调用管理事件机制。著名分布式缓存软件memcached也是libevent based,而且libevent在使用上可以做到跨平台,而且根...
分类:其他好文   时间:2014-06-27 12:16:35    阅读次数:196
[leetcode] Valid Sudoku
Determine if a Sudoku is valid, according to: Sudoku Puzzles - The Rules.
分类:其他好文   时间:2014-06-27 12:18:39    阅读次数:153
[leetcode] Permutations
Given a collection of numbers, return all possible permutations.
分类:其他好文   时间:2014-06-27 12:19:22    阅读次数:241
(转)AVI文件格式解析+AVI文件解析工具
AVI文件解析工具下载地址:http://download.csdn.net/detail/zjq634359531/7556659 AVI(Audio Video Interleaved的缩写)是一种RIFF(Resource Interchange File Format的缩写)文件格式,多用....
分类:其他好文   时间:2014-06-27 12:20:07    阅读次数:251
[leetcode] Add Two Numbers
You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single ...
分类:其他好文   时间:2014-06-27 12:21:24    阅读次数:215
1708条   上一页 1 ... 39 40 41 42 43 44 45 ... 101 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!