码迷,mamicode.com
首页 >  
搜索关键字:optimize    ( 719个结果
09.非线性-指数增长模型
import numpy as np from scipy.optimize import curve_fit import matplotlib.pyplot as plt # 凸函数:斜率递增 # 指数增长模型(exponential growth model) y = a? # 半衰期模型(h ...
分类:其他好文   时间:2020-11-10 10:32:39    阅读次数:6
spring-boot-starter-webflux 与spring-cloud-starter-openfeign冲突
Thu Oct 22 17:16:01 CST 2020 [3be84a1c-14] There was an unexpected error (type=Internal Server Error, status=500). No qualifying bean of type 'org.spr ...
分类:编程语言   时间:2020-10-22 23:00:46    阅读次数:50
抽离第三方包时报错webpack.optimize.CommonsChunkPlugin has been removed, please use config.optimization.splitChunks instead.
1、抽离第三方包时报错webpack.optimize.CommonsChunkPlugin has been removed, please use config.optimization.splitChunks instead. 2、经查证又是因为版本问题重新编写配置 与 plugins 同级添 ...
分类:Web程序   时间:2020-10-14 20:40:45    阅读次数:45
Table does not support optimize, doing recreate + analyze instead
Table does not support optimize, doing recreate + analyze instead 优化InnoDb 表提示错误! That's really an informational message. Likely, you're doing OPTIMIZ ...
分类:其他好文   时间:2020-08-31 13:06:17    阅读次数:58
Educational Codeforces Round 21
Educational Codeforces Round 21 A. Lucky Year 个位数直接输出$1$ 否则,假设$n$十进制最高位的值为$s$,答案就是$s-(n\mod s)$ view code #pragma GCC optimize("O3") #pragma GCC optim ...
分类:其他好文   时间:2020-08-25 15:43:40    阅读次数:44
Educational Codeforces Round 19
Educational Codeforces Round 19 A. k-Factorization 找出所有质因子,把多的合并一下 view code //#pragma GCC optimize("O3") //#pragma comment(linker, "/STACK:1024000000 ...
分类:其他好文   时间:2020-08-19 19:49:08    阅读次数:61
如何用tensorflow实现MLP
""" Multilayer Perceptron. A Multilayer Perceptron (Neural Network) implementation example using TensorFlow library. This example is using the MNIST d ...
分类:其他好文   时间:2020-07-30 14:32:23    阅读次数:68
[2020杭电多校第三场]1008 Triangle Collision
唯一难点应该在于怎么转点吧,直接看代码呗。 //#pragma GCC optimize("-Ofast","-funroll-all-loops") //#pragma GCC optimize(2) //freopen("C://std/a.in","r",stdin); //freopen(" ...
分类:其他好文   时间:2020-07-29 17:46:49    阅读次数:81
[2020杭电多校第二场]1005 New Equipments(费用流)
首先,明显的网络流。那么如何建边,对于每个二次函数在[1,m]里挑n个函数值最小的点, 这样子一共n^2个点,注意还要去重。这n^2个点其实就能使得n个二次函数(a, b, c)完全匹配。 那么流量全部设为1,费用是对应的函数值。超级源点和终点费用为0;但是,跑n次费用流时间不允许,但是你仔细想每次 ...
分类:其他好文   时间:2020-07-27 15:49:36    阅读次数:71
Acwing 1291.轻拍牛头
题意: 给定一个序列ai,问序列中其他数中有多少个数是它的约数 思路: 暴力求法会超时。O(n²) 最优解:先储存每个数的个数,遍历x,每个x的倍数加上x的个数 注:最后每个数的答案要-1(减去本身) Code: #pragma GCC optimize(3) #pragma GCC optimiz ...
分类:Windows程序   时间:2020-07-27 13:36:55    阅读次数:80
719条   上一页 1 2 3 4 5 ... 72 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!