有时我们需要设置中文字体为宋体,西文字体为Times New Roman,对于这种情况,在Spire.Doc中可以如下处理 private void AddTextRange(Section section, Paragraph pragraph, string word, float fontSi ...
分类:
其他好文 时间:
2020-06-08 12:57:31
阅读次数:
212
def pt_line(c,times): #形参 print(c*times) times=5 char="*" row=0 while row<5: pt_line(char,times) # char ,times 实参 row+=1 循环里面的pt_line 执行时,传递参数进入第一行执行, ...
分类:
其他好文 时间:
2020-06-08 09:28:42
阅读次数:
72
基础算法戳这里 扩展一:二维前缀和 给定一个 $n \times m$ 的矩阵,有 $T$ 次询问,每次会给出四个数 $a,b,c,d$,求以点 $(a,b)$ 为左上角,点 $(c,d)$ 为右下角的矩形所有元素和。 $1 \le n,m \le 3000$,$1 \le T \le 10^6$。 ...
分类:
其他好文 时间:
2020-06-06 00:35:18
阅读次数:
67
题目如下: You are given an integer num. You will apply the following steps exactly two times: Pick a digit x (0 <= x <= 9). Pick another digit y (0 <= y < ...
分类:
其他好文 时间:
2020-06-03 23:33:43
阅读次数:
70
题意 给定$n$长度序列${a}$(\(a_i\in[1,9]\)) 对序列建二叉树树的过程如下:\([l,r]\),选择$i\in[l,r]\(,分别对\)[l,i-1],[i+1,r]$建树 求任意点到根路径和的最大值的最小值 做法 显然答案$\le 9\times logn$ 令$f_{x,c ...
分类:
其他好文 时间:
2020-06-03 23:30:06
阅读次数:
54
问题提示为: 原因:MySQL数据库版本为8.0以上,需要在URL加上时区,即加上?serverTimezone=GMT 成功后为: ...
分类:
数据库 时间:
2020-06-03 15:34:27
阅读次数:
291
题意 $n\times m$方格,若选择一个格,有花费和收益$cost_{i,j},val_{i,j}$,当某个周围四个点都被选择时,这个点自动获得收益 做法 最小割,黑白染色 ...
分类:
其他好文 时间:
2020-05-31 21:27:08
阅读次数:
44
公式来自官方文档,戳->(Conv3d — PyTorch master documentation) 本文仅作记录,顺便练习Latex语法 \(D_{out}=\frac{D_{in}+2\times padding[0]-dilation[0]\times(kernel\_size[0]-1)- ...
分类:
其他好文 时间:
2020-05-31 16:08:36
阅读次数:
230
题目链接:https://codeforces.com/contest/1359/problem/B 题解 因为 $1 \times 2$ 的瓷砖不能旋转,所以每次逐行考虑即可,注意 $y$ 取 $min(2x, y)$ 。 代码 #include <bits/stdc++.h> using nam ...
分类:
其他好文 时间:
2020-05-29 19:26:11
阅读次数:
63
本章介绍如何设置不同的字体,应用样式,并在Excel电子表格中显示的方向不同角度的文字。 每个系统附带一个很大的字体如 Arial, Impact, Times New Roman,等字体集合也可以用新的字体更新,如果需要的话。同样也有各种风格,其中的字体可以显示,例如,粗体,斜体,下划线,删除线等 ...
分类:
Web程序 时间:
2020-05-29 15:07:16
阅读次数:
85