simple-statistics官网:https://simplestatistics.org/docs/#median demo机构: package.json { "name": "react-blank", "version": "0.1.0", "private": true, "depe ...
分类:
Web程序 时间:
2020-01-21 19:52:15
阅读次数:
229
题面:https://codeforces.com/contest/1288/problem/C 题目大意: 给定n和m,有两个数组,两个数组的长度都等于m 数组内每个元素都在1到n中 对于两个数组对应的位置i,必须满足a[i]<=b[i] a数组必须是不下降的序列 b数组必须是不上升的序列 求有多 ...
分类:
其他好文 时间:
2020-01-21 13:30:13
阅读次数:
58
http://codeforces.com/contest/1288/problem/C 题意: 用1—n构造两个长为m的数组a,b 满足a[i]<=b[i],a单调不减,b单调不增 求方案数 令dp[i][j][k] 表示构造了长度为i,a[i]=j,b[i]=k的方案数 dp[i][j][k]= ...
分类:
其他好文 时间:
2020-01-20 22:27:41
阅读次数:
64
two pointers思想 利用两个i, j两个下标,同时对序列进行扫描,以O(n)复杂度解决问题的一种思想, 如果能用这种思想解决问题,那么会大大降低程序的复杂度。 两个利用这个思想的例子: 1. 分析: 代码: 1 while (i < j){ 2 if (a[i] + a[j] == m){ ...
分类:
其他好文 时间:
2020-01-20 19:16:01
阅读次数:
71
The string APPAPT contains two PAT's as substrings. The first one is formed by the 2nd, the 4th, and the 6th characters, and the second one is formed ...
分类:
其他好文 时间:
2020-01-20 09:57:49
阅读次数:
93
Can you walk and talk at the same time? If so, you've experienced what it's like to be in two states at the same time. Hopefully, those two states hav ...
分类:
其他好文 时间:
2020-01-20 09:39:21
阅读次数:
70
This time, you are supposed to find A×B where A and B are two polynomials. Input Specification: Each input file contains one test case. Each case occu ...
分类:
其他好文 时间:
2020-01-19 23:53:57
阅读次数:
103
This time, you are supposed to find A+B where A and B are two polynomials. Input Specification: Each input file contains one test case. Each case occu ...
分类:
其他好文 时间:
2020-01-19 22:18:53
阅读次数:
107
本题要求实现一个函数,求N个集合元素A[]的中位数,即序列中第?大的元素。其中集合元素的类型为自定义的ElementType。 函数接口定义: ElementType Median( ElementType A[], int N ); 其中给定集合元素存放在数组A[]中,正整数N是数组元素个数。该函 ...
分类:
其他好文 时间:
2020-01-19 15:17:35
阅读次数:
110
3D点云做detection的一篇milestone paper。经典的two-stage方法(region proposal-based method)。思路来自于经典的faster rcnn。 整个模型如下图 图一. 整体模型 3D Point Cloud Representation 这篇文章 ...
分类:
Web程序 时间:
2020-01-19 12:57:44
阅读次数:
185