#111. 二叉树的最小深度 https://leetcode-cn.com/problems/minimum-depth-of-binary-tree/ 关键在于知道f(root)=min(f(left),f(right))+1这个表达式 class Solution { public: int ...
分类:
其他好文 时间:
2021-03-16 12:04:09
阅读次数:
0
font2 = {'family': 'Times New Roman', 'weight': 'normal', 'size': 12, } ax.legend(loc='lower center', bbox_to_anchor=(0.5, 1), fancybox=True, shadow=T ...
分类:
其他好文 时间:
2021-03-16 12:03:49
阅读次数:
0
Codeforces 1495F 搞了一上午的心得 不愧是div1的压轴题,真jr爽 这可比whk得劲多了! 约定 我们令题目中的 \(a_0=b_0=0\)。 \(i\) 的前驱:\(max(j:j<i,p_j>p_i)\) \(i\) 的后继:\(min(j:j>i,p_j>p_i)\) 如果 ...
分类:
其他好文 时间:
2021-03-16 11:49:46
阅读次数:
0
求强连通/割点/桥 step1 将图深搜,形成深搜树,按遍历顺序标号->dfn[i] step2 将low[i]初始化为dfn[i] step3 回溯时low[i]=min(low[i],low[i的儿子]) 判断 DFN[]作为这个点搜索的次序编号(时间戳) LOW[]作为每个点在这颗树中的,子树 ...
分类:
编程语言 时间:
2021-03-16 11:48:55
阅读次数:
0
#home { margin: 0 auto; width: 65%;/*原始65*/ min-width: 980px;/*页面顶部的宽度*/ background-color: rgba(245, 245, 245, 0.5); padding: 30px; margin-top: 50px; ...
分类:
其他好文 时间:
2021-03-15 11:21:43
阅读次数:
0
Legend Link \(textrm{to Codeforces}\)。 自我感觉是出的还行的一道题目呀。 Editorial 首先要特判掉只有一个队伍有机器人的情况。 考虑当游戏结束时,总存在至少一个队伍的所有机器人都没有手牌。设此队伍为 \(A\),另一队伍为 \(B\)。当两个队伍的手牌数 ...
分类:
其他好文 时间:
2021-03-15 11:03:43
阅读次数:
0
1 import os 2 os.environ['TF_CPP_MIN_LOG_LEVEL']='2' # to hidden the messages from tensorflow 3 from tensorflow import keras 4 from tensorflow.keras i ...
分类:
其他好文 时间:
2021-03-15 10:35:44
阅读次数:
0
c# public double AskMinimumDist(UFSession theUFSession,Tag obj1, Tag obj2) { int guess1_given; double[] guess1 = { 0.0, 0.0, 0.0 }; int guess2_given; ...
assume cs:code,ss:stack stack segment db 128 dup (0) stack ends code segment start: mov ax,stack mov ss,ax mov sp,128 call copy_boot ;设置CS:IP为0:7e00h ...
分类:
编程语言 时间:
2021-03-11 20:35:32
阅读次数:
0
2020/3/10 程设 函数变量的定义。如有一个传入两个 int 传出一个 int 的 min 函数,可以这样来做:int (*Min)(int, int) = min,达到与原函数一样的效果。 qsort 函数,依次传入首地址,元素个数,类型所占字节数和比较函数,其中比较函数传入类型为 void ...
分类:
其他好文 时间:
2021-03-11 14:48:08
阅读次数:
0