10 2020 档案
摘要:operator 排序 pri 效果 > < greater 由大到小> > greater 由小到大< < less 由大到小< > less 由小到大
阅读全文
摘要:#include<opencv2/core/core.hpp> #include<opencv2/imgproc/imgproc.hpp> #include<opencv2/highgui/highgui.hpp> #include<opencv2/opencv.hpp> #include<bits
阅读全文
摘要:#include <bits/stdc++.h> #include "opencv2/core.hpp" #include "opencv2/imgproc.hpp" #include "opencv2/video.hpp" #include "opencv2/objdetect.hpp" #inc
阅读全文
摘要:#include <bits/stdc++.h> #include "opencv2/core.hpp" #include "opencv2/imgproc.hpp" #include "opencv2/video.hpp" #include "opencv2/objdetect.hpp" #inc
阅读全文
摘要:while True: try: x,a,y,b=map(int,input().split()) if x*b > y*a: print(">") elif x*b < y*a: print("<") else : print("=") except: break
阅读全文
摘要:f[i][j][0/1/2]表示在区间[i,j]左侧加 0,1,2 个和i颜色相同的球,并把[i,j]区间的球全部消除掉的最小花费。 if(k<2) ans = min(ans, dp(l,r,k+1)+1);那么可以在左侧再加1个if(k==2) ans = min(ans, dp(l+1,r,0
阅读全文
摘要:对6.1进行了一些优化 题外话:稍加观察思索就会发现,我只测试了一个视频场景,而且这个场景是特意选择的。背景十分干净,是白色的墙壁,没有过多的干扰。我这个是不可能在雪地里追踪到白色的兔子的。我在测试的时候还发现,当我把矩形框框得比较大的时候,也就是包含的墙壁比较多,它就很大概率会丢失目标,开始乱跑。
阅读全文
摘要:#include <bits/stdc++.h> #include "opencv2/core.hpp" #include "opencv2/imgproc.hpp" #include "opencv2/video.hpp" #include "opencv2/objdetect.hpp" #inc
阅读全文
摘要:#include <bits/stdc++.h> #include "opencv2/core.hpp" #include "opencv2/imgproc.hpp" #include "opencv2/video.hpp" #include "opencv2/objdetect.hpp" #inc
阅读全文
摘要:P3382 【模板】三分法只有一个地方在这个题当中,f(mid)>f(mid-eps)比f(mid)-f(mid-eps)>eps精度要高 #include <bits/stdc++.h> #define inf 2333333333333333 #define N 10010 #define p(
阅读全文
摘要:Problem F – Fabricating Sculptures https://codeforces.com/gym/102428/problem/F 这是一个按层决策的dp,即它只能有一个极值而且是最大值,我当时是想的按列处理,结果卡住了但是如果按行从下往上来看,它就是单调不增的f[i][j
阅读全文
摘要:K. Pope's work http://codeforces.com/gym/298615/problem/K f[i][j]表示前面i个箱子,堆了j个高度所需要的最小重量先按承重排序,最优答案是承重从下往上依次不增的 转移就很简单了,如果当前这个能够承担之前的j-1个箱子,就把它放在最下面。
阅读全文
摘要:F. Auction of Services http://codeforces.com/gym/298615/problem/F 构建最小生成树,然后在树上建立lca,对于每次查询,相当于输出任意两点之间的最大值,用lca来处理树上任意两点的最大值。g[i][j]表示i号点向上跳2^j次的链上的最
阅读全文
摘要:#include <bits/stdc++.h> #include "opencv2/core.hpp" #include "opencv2/imgproc.hpp" #include "opencv2/video.hpp" #include "opencv2/objdetect.hpp" #inc
阅读全文
摘要:#include <bits/stdc++.h> #include "opencv2/core.hpp" #include "opencv2/imgproc.hpp" #include "opencv2/video.hpp" #include "opencv2/objdetect.hpp" #inc
阅读全文
摘要:from pyecharts import options as opts from pyecharts.charts import Boxplot v1 = [ [850, 740, 900, 1070, 930, 850, 950, 980, 980, 880, 1000, 980], [960
阅读全文
摘要:import pyecharts.options as opts from pyecharts.charts import Bar3D Hair = ["Black","Brown","Red","Blond","Total"] Eye = ["Brown","Blue","Hazel","Gree
阅读全文
摘要:#include <bits/stdc++.h> #include "opencv2/core.hpp" #include "opencv2/imgproc.hpp" #include "opencv2/video.hpp" #include "opencv2/objdetect.hpp" #inc
阅读全文
摘要:#include <bits/stdc++.h> #include "opencv2/core.hpp" #include "opencv2/imgproc.hpp" #include "opencv2/video.hpp" #include "opencv2/objdetect.hpp" #inc
阅读全文
摘要:I - Interesting Permutation Gym - 102394I Gym - 102394I 如果h[i]==h[i-1],那么它只能选择最大值和最小值直接的位置,假设为tot如果h[i]>h[i-1],那么当前位置为最大值或者最小值,ans*=2,差值也变大了,tot+=h[i]
阅读全文