最新使用的的酸酸乳 https://github.com/CangShui/KU5Cu3pkhe9RNNwTUKen6TQDqladGhzkVgc778Y5bI0yZruQLuBdwT8dqC9Ykcs5NNywP89Cai3qUeSdSCz7QafxWzSR1pdV6Hq 以下转自(https:/ ...
分类:
其他好文 时间:
2019-02-16 13:56:09
阅读次数:
1571
1,DN的下载条件:(没有删除没有下载) PPSL=’N’(PPSL有两个值,N时是指这个DN还没有下载) DEL_FLAG<>’Y’(DEL_FLAG有两个值,Y时说明已经删除,不会下载) CMS_FLAG=’1’or’3’(CMS_FLAG有三个值1:PPS/EPS(IEB),2:EPS(IEB ...
分类:
其他好文 时间:
2019-02-15 13:37:27
阅读次数:
192
将表中的数据手动更改: select * from cmpps025 where pino = ''; insert into cmpps025 select ncmp, pino, pono, item||'5380Z0001CK', item, oqua, 'CN', '7S3501592100 ...
分类:
其他好文 时间:
2019-02-15 13:29:08
阅读次数:
346
从最基础的开始。 1.gcd 这个不用说了吧……$gcd(a,b) = gcd(b,a\%b)$,这个很显然。 2.exgcd 这玩意可以用来求形如$ax+by = gcd(a,b)$的不定方程的一组特解。 首先来证明一下为什么一定是有解的。 因为我们是像上面的gcd一样递归解决问题的,所以当$b ...
分类:
其他好文 时间:
2019-02-14 10:31:20
阅读次数:
197
安装之前先检查一下系统有没有自带open-jdk 命令: rpm -qa |grep java rpm -qa |grep jdk rpm -qa |grep gcj 如果没有输入信息表示没有安装。 如果安装可以使用rpm -qa | grep java | xargs rpm -e --nodep ...
分类:
其他好文 时间:
2019-02-13 16:48:23
阅读次数:
200
题目: 583. Delete Operation for Two Strings Medium 61517FavoriteShare 583. Delete Operation for Two Strings Medium 61517FavoriteShare Medium Given two w ...
分类:
其他好文 时间:
2019-02-12 12:52:24
阅读次数:
166
Game on Tree 这种题好像在wannfly训练营讲过, 我怎么又不会写啦, 我好菜啊啊啊。 我们按每个点算贡献, 一个点有贡献就说明它是被选中的点, 那么它被选中的概率就为1 / depth ...
分类:
其他好文 时间:
2019-02-11 12:30:16
阅读次数:
209
半平面交+二分 二分最远距离把每个直线往里移这个距离然后看一下半平面交是否存在就好 然后注意精度问题 【poj G++需要用%f C++没有问题 //Love and Freedom. #include<cstdio> #include<cstring> #include<algorithm> #i ...
分类:
其他好文 时间:
2019-02-10 20:17:40
阅读次数:
170
Given an array of non-negative integers, you are initially positioned at the first index of the array. Each element in the array represents your maxim ...
分类:
其他好文 时间:
2019-02-07 17:51:36
阅读次数:
159
A .Abstract Art 题意:求多个多边形的面积并。 思路:模板题。 #include<bits/stdc++.h> using namespace std; typedef long long ll; const double inf=1e200; const double eps=1e- ...
分类:
其他好文 时间:
2019-02-07 17:37:44
阅读次数:
164