题意: 给出$T$组数据,每组数据给出$N$和$M$,表示接下去$N$行$M$列。 图中“#”代表草,可以点燃;“.”点代表不能点燃;“#”和“.”都以走。 现在需要同时点两把火(位置可以重合),火的燃烧方向是上下左右,可以同时进行(注意!:不是一次只能一个方向,可以同时上下左右)。 若能烧完所有草 ...
分类:
其他好文 时间:
2020-07-26 15:19:03
阅读次数:
49
https://www.cnblogs.com/sfencs-hcy/p/10989298.html 1.安装:pip install pympler 或 pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pympler 2.配置: DE ...
分类:
其他好文 时间:
2020-07-26 15:18:02
阅读次数:
61
# python安装reportlab pip install reportlab -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com参考https://blog.csdn.net/zhezhebie/article/de ...
分类:
编程语言 时间:
2020-07-25 23:28:34
阅读次数:
72
ffplay是ffmpeg源码中一个自带的开源播放器实例,同时支持本地视频文件的播放以及在线流媒体播放,功能非常强大。 FFplay: FFplay is a very simple and portable media player using the FFmpeg libraries and t ...
分类:
其他好文 时间:
2020-07-25 09:54:41
阅读次数:
80
1 class Solution { 2 public boolean divisorGame(int N) { 3 boolean[] dp = new boolean[N + 3]; //初始化DP 4 dp[1] = false; //数字为1时失败 5 dp[2] = true; //数字为 ...
分类:
其他好文 时间:
2020-07-24 23:43:32
阅读次数:
80
import this The Zen of Python, by Tim Peters Beautiful is better than ugly. Explicit is better than implicit. Simple is better than complex. Complex i ...
分类:
编程语言 时间:
2020-07-24 21:08:55
阅读次数:
66
SLF4J,即简单日志门面(Simple Logging Facade for Java),不是具体的日志解决方案,它只服务于各种各样的日志系统。按照官方的说法,SLF4J是一个用于日志系统的简单Facade,允许最终用户在部署其应用时使用其所希望的日志系统。 LF4J(Simple logging ...
分类:
其他好文 时间:
2020-07-23 22:45:20
阅读次数:
85
终于可以在假期开始学习 Django 啦 !😀 安装 django 1.11.14 pip install django==1.11.14 -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com 卸载 django 1.11 ...
分类:
其他好文 时间:
2020-07-23 22:28:40
阅读次数:
86
https://cloud.tencent.com/developer/devdocs 1.设计原则(1)YAGNIYou Aren't Gonna Need It,你不会需要它;不写不需要的功能 (2)KISSKeep It Simple and Stupid,让你的代码越简单/傻瓜越好(3)OC ...
分类:
其他好文 时间:
2020-07-23 01:46:57
阅读次数:
121
今天想解决下面几个问题。 1.lightgbm cpu太慢了,我装了gpu的版本,对比了之后发现训练速度从10min缩短到8min。感觉很少,不知道是不是我姿势错误。 过程如下。 安装软件依赖sudo apt-get install --no-install-recommends git cmake ...
分类:
其他好文 时间:
2020-07-22 23:32:39
阅读次数:
92