http://www.eclipse.org/downloads/eclipse-packages/http://wiki.eclipse.org/Eclipse_Articles,_Tutorials,_Demos,_Books,_and_Morehttp://www.runoob.com/ecl ...
分类:
系统相关 时间:
2016-09-15 15:06:09
阅读次数:
182
果断打表找规律。然后看得出来是2^k-1之后又不知道怎么求出k有什么卵用。。。 http://blog.csdn.net/guhaiteng/article/details/52094210 %%%%神犇的讲解非常详细! 1379 索函数 基准时间限制:1 秒 空间限制:131072 KB 分值: ...
分类:
其他好文 时间:
2016-09-15 15:05:26
阅读次数:
114
Find the contiguous subarray within an array (containing at least one number) which has the largest product. For example, given the array [2,3,-2,4],t ...
分类:
其他好文 时间:
2016-09-15 15:05:05
阅读次数:
135
需求:定义一个操作系统OS接口,安装Windows10操作系统,在上面安装虚拟机VMWare,虚拟机里装Linux; 然后在Linux中安装虚拟机VMware,再在虚拟机里安装MacOS操作系统。 实现: 1. 定义一个接口OS: 2. Windows10操作系统: 3. Linux操作系统: 4. ...
分类:
编程语言 时间:
2016-09-15 15:04:44
阅读次数:
176
O(n2)tle。O(nlognlogn) 1421 最大MOD值 题目来源: CodeForces 基准时间限制:1 秒 空间限制:131072 KB 分值: 80 难度:5级算法题 收藏 关注 1421 最大MOD值 题目来源: CodeForces 基准时间限制:1 秒 空间限制:131072 ...
分类:
其他好文 时间:
2016-09-15 15:04:44
阅读次数:
125
package com.company;/** * Created by Administrator on 2016/9/15. */public class EigthQueue { private static int N = 8; private int count = 0; // 总方案数 ...
分类:
其他好文 时间:
2016-09-15 15:02:05
阅读次数:
119
看题解的。。。就是将必须要修改的数去掉后求最长的不递减子序列。 upper_bound+lower_bound要理解。有时候-1有时候不用是有原因的。 1294 修改数组 题目来源: HackerRank 基准时间限制:1 秒 空间限制:131072 KB 分值: 160 难度:6级算法题 收藏 关 ...
分类:
编程语言 时间:
2016-09-15 15:00:55
阅读次数:
119
问题描述:两个文件a.dat, b.dat a.dat 0 100 1 99 2 93 3 90 ... b.dat 0 0 1 3 2 0 3 2 .... 如果两个文件中第一列的元素相同,则相对应行的第二列元素相加,即 0 100 1 102 2 93 3 92 ... Awk代码 awk 'F ...
分类:
其他好文 时间:
2016-09-15 15:00:15
阅读次数:
118