T1打包 一个二维01背包的板子,状态转移方程$$Dp_{j,k}=max\left \{Dp_{j,k},Dp_{j-Weight_i,k-V_i}+Value_i\right \}$$ T2暗黑破坏神 大概类似于分组背包,开$long\ long$,在更新$Dp$的过程中记录路径,递归输出即可。 ...
分类:
其他好文 时间:
2021-06-11 18:06:14
阅读次数:
0
position 规定元素的定位类型。参考链接:https://www.cnblogs.com/guolao/p/9048308.html static 默认值,正常布局,此时的top、right、bottom、left 属性无效。 absolute 绝对定位,相对于static 定位以外 的第一个 ...
分类:
Web程序 时间:
2021-06-10 17:39:38
阅读次数:
0
深度学习换脸 Continuous Updating Introduction Deepfake是指基于深度学习等机器学习方法创建或合成视听觉内容,如图像、音视频、文本等。AI换脸 (face-swap)是指用另一个人脸来替换一张图片或视频中的一个人脸,合成新的媒体物,它是Deepfake(“深度伪 ...
分类:
其他好文 时间:
2021-06-08 22:47:51
阅读次数:
0
1.负margin技术: 当元素的margin-top和margin-left取负值时,“当前元素”会被拉向指定方向。 当元素的margin-bottom和margin-right取负值时,“后续元素”会被拉向指定方向。 自适应两列布局 <style> *{margin:0} .main,.side ...
分类:
其他好文 时间:
2021-06-07 20:00:34
阅读次数:
0
format :字体的格式,主要用于浏览器识别,一般有以下几种——truetype,opentype,truetype-aat,embedded-opentype,avg等。 对于@font-face而言,兼容性问题就是各浏览器所能识别的字体格式不尽相同。 TrueType格式(.ttf)Windo ...
分类:
其他好文 时间:
2021-06-05 18:14:10
阅读次数:
0
// html部分 <div class="fdj"> <div class="left"> <div class="zhezhao"></div> </div> <div class="right"></div> </div> // css部分 .fdj{ width:100vw; height: ...
分类:
其他好文 时间:
2021-05-25 17:55:05
阅读次数:
0
在复习归并排序的时候,使用到了递归,我一直以为是递归函数没写对,导致了Maximum call stack size exceeded 栈溢出,但是其实是JavaScript浮点数的自动转换的问题! function sort(arry,left,right){ if(left right){ re ...
分类:
编程语言 时间:
2021-05-25 17:48:06
阅读次数:
0
float 浮动法:中间的元素需放在最后,左右元素使用左浮动和右浮动,中间的元素使用 margin-left 和 margin-right 与两边留出间隔(就是两个浮动元素的宽度) 缺点:三个元素的顺序受限,middle 必须放在最后,而且浏览器窗口宽度不够时,right 元素会被挤到下一行 <di ...
分类:
Web程序 时间:
2021-05-24 16:58:25
阅读次数:
0
将@click改为@click.native='logoutHandle';即可监听选项的点击事件。 1 2 3 4 5 6 7 8 <el-dropdown class="pull-right" > <span class="el-dropdown-link"> <img src="./img/h ...
分类:
其他好文 时间:
2021-05-24 14:13:59
阅读次数:
0
Given a tree, you are supposed to list all the leaves in the order of top down, and left to right. Input Specification: Each input file contains one t ...
分类:
其他好文 时间:
2021-05-24 14:03:04
阅读次数:
0