Note from> http://jerkwin.github.io/GMX/GMXtut-1/ 1、生成拓扑 >gmx_mpi pdb2gmx -f pro2.pdb -o pro2.gro -water TIP3P >5 2、检查拓扑 3、定义单位盒子并填充溶剂 >gmx_mpi editco ...
分类:
系统相关 时间:
2019-07-12 22:28:13
阅读次数:
222
Due to recent rains, water has pooled in various places in Farmer John's field, which is represented by a rectangle of N x M (1 <= N <= 100; 1 <= M <= ...
分类:
其他好文 时间:
2019-07-12 09:59:45
阅读次数:
104
1.assert 函数说明: 使用范例 D:\Users\lenovo\Anaconda3\python.exe F:/机器学习/生物信息学/Code/NumPy.py Traceback (most recent call last): File "F:/机器学习/生物信息学/Code/NumPy ...
分类:
编程语言 时间:
2019-07-11 14:07:17
阅读次数:
128
Input The first line of input contains a single integer P, (1 ≤ P ≤ 1000), which is the number of data sets that follow. Each data set should be proce ...
分类:
其他好文 时间:
2019-07-10 16:34:44
阅读次数:
81
Oracle 差异增量和累积增量的区别 Rman 一个强大的功能是支持增量备份,增量备份中心思想就是减少备份的数据量,使用增量备份后就可以不用从头开始备份了,只需要备份自上次已备份之后的数据块开始进行数据备份。 Oracle 的增量备份分为差异增量备份(Differential Incrementa ...
分类:
数据库 时间:
2019-07-09 17:52:16
阅读次数:
179
题目背景 Samcompu拥有大量的"水"资源!! 题目描述 Samcompu需要制定一个水计划。这个计划的主要目的就是为了避开老师监视的时间来水。 老师在中途会离开机房T次,第i次将会离开tim_i秒。Samcompu划水的时候可不是随便乱水的。他可是拥有"水"资源的。在他的库存中有N个可以水的网 ...
分类:
其他好文 时间:
2019-07-08 14:07:00
阅读次数:
86
本人的解法: public class Main { public int trap(int[] height) { // 统计雨水总数//temp登记最大值 int sum = 0; if (height.length != 0) { int temp = height[0]; int temp2 ...
分类:
移动开发 时间:
2019-07-08 10:42:19
阅读次数:
142
原题链接在这里:https://leetcode.com/problems/split-bst/ 题目: Given a Binary Search Tree (BST) with root node root, and a target value V, split the tree into t ...
分类:
其他好文 时间:
2019-07-07 09:46:16
阅读次数:
126
题意: 有n个圆,每个圆的中心和半径和一个频率都给定,只有一个频率最高的789为紫色,只有一个最低的400为红色,规则如下: 1.当两个圆严格相交时,且人是从红色到紫色的方向运动时可以由低频率向高频率移动 2.当两个圆严格相交时,且人是从紫色到红色的方向运动时可以由高频率向低频率运动 3.除了红色的 ...
分类:
其他好文 时间:
2019-07-06 19:35:32
阅读次数:
136
Container With Most Water这道题为Medium级别,暴力算法虽然简单,但是要想到贪心算法不太容易。这题主要考察贪心算法的灵活运用。 ...
分类:
其他好文 时间:
2019-07-06 00:13:06
阅读次数:
105