meshgrid 有三种语法,用来生成三维网格矩阵或二维网格矩阵 [X,Y] = meshgrid(x,y) , x和y 都是一维数组,如x=[1:3]; y= [4:5]; 则生成的 X 和 Y 都是为 3X3 维的矩阵, [X,Y] = meshgrid(x) [X,Y,Z] = meshgri ...
分类:
其他好文 时间:
2018-02-10 00:01:11
阅读次数:
223
1. 原题链接 https://leetcode.com/problems/unique-paths-ii/description/ ...
分类:
其他好文 时间:
2018-02-10 00:01:03
阅读次数:
168
题目描述 农夫约翰决定给站在一条线上的N(1 <= N <= 200,000)头奶牛制作一张全家福照片,N头奶牛编号1到N。 于是约翰拍摄了M(1 <= M <= 100,000)张照片,每张照片都覆盖了连续一段奶牛:第i张照片中包含了编号a_i 到 b_i的奶牛。但是这些照片不一定把每一只奶牛都拍 ...
分类:
其他好文 时间:
2018-02-10 00:00:49
阅读次数:
257
(默认机器上已经安装并配置好了jdk) 1、下载zookeeper并解压 $ tar -zxvf zookeeper-3.4.6.tar.gz 2、将解压后的文件夹移动到 /usr/local/ 目录下 $ mv zookeeper-3.4.6/ /usr/local/ 3、在zookeeper的目 ...
分类:
其他好文 时间:
2018-02-10 00:00:43
阅读次数:
205
Ultra-QuickSort Time Limit: 7000MS Memory Limit: 65536K Total Submissions: 65986 Accepted: 24686 Description In this problem, you have to analyze a pa ...
分类:
其他好文 时间:
2018-02-10 00:00:36
阅读次数:
206
#include using namespace std; int store[100]; int n; void subset(int cur,int s,int cnt){ //cnt表示子集元素的个数 if(cur==cnt){ for(int i=0;i>n){ for(int i=1;i<... ...
分类:
其他好文 时间:
2018-02-10 00:00:29
阅读次数:
227
Create this docker-compose.yml file: version: "2" services: sonarqube: image: sonarqube ports: - "9000:9000" networks: - sonarnet environment: - SONAR ...
分类:
其他好文 时间:
2018-02-10 00:00:20
阅读次数:
311
题目链接 "luogu P1446 [HNOI2008]Cards" 题解 题意就是求染色方案 等价类 洗牌方式构成成了一个置换群 然而,染色数限制不能用polay定理直接求解 考虑burnside引理 对于一个置换群其等价类的个数为置换中不动点的平均数 先暴力求出置换中的轮换,然后01背包DP求出 ...
分类:
其他好文 时间:
2018-02-10 00:00:14
阅读次数:
184
使用putty完成windows向linux发送文件 在windows cmd下 比如: 将当前目录下的jdk安装包发给linux服务器的 文件夹 使用putty完成linux服务器向windows发送文件 同样是在windows cmd下 就是把上面的反过来写了 ...
分类:
编程语言 时间:
2018-02-10 00:00:05
阅读次数:
216