码迷,mamicode.com
首页 >  
搜索关键字:mda    ( 2143个结果
Educational Codeforces Round 21 Problem F (Codeforces 808F) - 最小割 - 二分答案
Digital collectible card games have become very popular recently. So Vova decided to try one of these. Vova has n cards in his collection. Each of the ...
分类:其他好文   时间:2017-06-03 17:35:31    阅读次数:271
H5图片异步拖拽上传
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <style type="text/css"> #div1{width: 200px; height: 200px; background: red; margi ...
分类:Web程序   时间:2017-06-02 17:25:50    阅读次数:172
laravel redis存数组并设置过期时间
laravel门面set数组需要先把数组序列化, 设置过期时间通过方法expire, ...
分类:编程语言   时间:2017-06-02 13:35:45    阅读次数:408
OkHttp3的简单使用(二)
OkHttp3的简单封装 ...
分类:Web程序   时间:2017-06-02 01:05:37    阅读次数:384
es6 新增数据类型Symbol
es6在string number boolean null undefined object之外又新增了一种Symbol类型。 Symbol意思是符号,有一个特性—每次创建一个Symbol值都是不一样的。 用处:赋值对象的属性被修改。 具体:把Symbol作为key,下游的人就没法覆盖key了。 ...
分类:其他好文   时间:2017-05-31 14:14:52    阅读次数:180
正表达式
参考资料:老马说编程——正则表达式 语法总结 ...
分类:其他好文   时间:2017-05-31 00:28:00    阅读次数:174
Machine_learning--score
辛苦了2个半月,终须学完了machine-learning 证书地址 辛苦了2个半月,终须学完了machine-learning 证书地址 ...
分类:系统相关   时间:2017-05-28 09:58:31    阅读次数:191
SpringMVC学习(四)——Spring、MyBatis和SpringMVC的整合
之前我整合了Spring和MyBatis这两个框架,不会的可以看我的文章MyBatis框架的学习(六)——MyBatis整合Spring。本文我再来讲SpringMVC和MyBatis整合开发的方法,这样的话,Spring、MyBatis和SpringMVC三大框架的整合开发我们就学会了。这里我使用 ...
分类:编程语言   时间:2017-05-27 12:11:33    阅读次数:281
[luoguP1005] 矩阵取数游戏(DP + 高精度)
传送门 和奶牛那个题很像,每一行状态互不影响,也就是求 n 遍DP 不过高精度非常恶心,第一次写,调了我一上午。 ——代码 1 #include <cstdio> 2 #include <cstring> 3 #include <iostream> 4 5 struct Big_int 6 { 7 ...
分类:其他好文   时间:2017-05-24 12:46:01    阅读次数:174
[luoguP2858] [USACO06FEB]奶牛零食Treats for the Cows(DP)
传送门 f[i][j][k] 表示 左右两段取到 i .... j 时,取 k 次的最优解 可以优化 k 其实等于 n - j + i 则 f[i][j] = max(f[i + 1][j] + a[i] * (n - j + i), f[i][j - 1] + a[j] * (n - j + i) ...
分类:其他好文   时间:2017-05-24 10:03:00    阅读次数:198
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!