题目链接:Almost Sorted Array 不用任何算法的做法:样例:1 3 6 5 7 8 9 9 8 7 5 6 3 2 2 7 1 1 AC代码: 1 #include <iostream> 2 #include <cstdio> 3 #include <cstring> 4 #incl ...
分类:
其他好文 时间:
2019-09-10 20:49:10
阅读次数:
91
Python3 环境搭建Python3 下载Python 安装Unix & Linux 平台安装 Python3:Window 平台安装 Python:MAC 平台安装 Python:环境变量配置在 Unix/Linux 设置环境变量在 Windows 设置环境变量Python 环境变量运行Pyth ...
分类:
编程语言 时间:
2019-09-10 12:52:18
阅读次数:
121
Solutions A. Choose Two Numbers 题意: 给出$A,B$两个集合,$A,B$ 集合分别选一个数$a,b$ ,使得$a+b\notin\ A,B$ 思路: 每个集合选出最大值,必定满足条件。emmmmm比赛的时候傻了。 ...
分类:
其他好文 时间:
2019-08-22 18:31:10
阅读次数:
87
思路 ___ 看样例的话,是不是可能偶数没用了?? 然后考虑奇数的话,照着样例模拟模拟试试?? 反正我打的vp,,不会掉分哒! 随便打了个代码结果AC了233 ____ cpp include define maxn 200010 using namespace std ; int n , a[ma ...
分类:
其他好文 时间:
2019-08-22 13:08:19
阅读次数:
74
lib.py重的一个add函数 test.py中的测试函数 ...
分类:
编程语言 时间:
2019-05-18 23:38:46
阅读次数:
137
You need to construct a string consists of parenthesis and integers from a binary tree with the preorder traversing way. The null node needs to be rep ...
分类:
其他好文 时间:
2019-04-06 22:50:34
阅读次数:
128
有了上次的八皇后的基础。这次准备解决2n皇后的问题,: //问题描述// 给定一个n*n的棋盘,棋盘中有一些位置不能放皇后。现在要向棋盘中放入n个黑皇后和n个白皇后,使任意的两个黑皇后都不在同一行、//同一列或同一条对角线上,任意的两个白皇后都不在同一行、同一列或同一条对角线上。问总共有多少种放法? ...
分类:
其他好文 时间:
2019-02-15 22:42:07
阅读次数:
249
1、What is the T Distribution? T分布(也叫Student 's T分布)是一组与正态分布曲线几乎相同的分布,只是更短更胖一点。当有小样本时,使用t分布而不是正态分布。样本容量越大,t分布越接近正态分布。事实上,对于大于20的样本容量(如自由度),其分布与正态分布几乎完全 ...
分类:
其他好文 时间:
2019-01-01 14:54:42
阅读次数:
3621
C. Hacking Cypher time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output Polycarpus participates ...
分类:
其他好文 时间:
2018-11-08 19:47:29
阅读次数:
210
原文地址:http://literatejava.com/exceptions/checked-exceptions-javas-biggest-mistake/ 仅供参考,毕竟我四级都没过 Checked exceptions have always been a controversial fe ...
分类:
编程语言 时间:
2018-10-19 16:07:23
阅读次数:
179