Luogu P4926 [1007]倍杀测量者 取对数化除为减。 或者用乘积最短路。 注意图不一定连通。 #include<bits/stdc++.h> using namespace std; #define N 1000005 const double eps = 1e-12; struct g ...
分类:
其他好文 时间:
2021-06-28 19:51:46
阅读次数:
0
1.题目如下 2.解题代码 #include<stdio.h> #include<stdlib.h> int finMissMin(int a[],int n) { int i,*b; b=(int *)malloc(sizeof(int)*n); //初始化为0 for(i=0;i<n;i++) ...
分类:
编程语言 时间:
2021-06-28 19:41:00
阅读次数:
0
简介 加载图像: cv::imread() 创建图像窗口: cv::namedWindow() 显示图像:cv::imshow() 保存图像:cv::imwrite() 测试代码 #include <opencv2/opencv.hpp> //总的头文件 // #include <opencv2/c ...
分类:
其他好文 时间:
2021-06-28 19:38:49
阅读次数:
0
1.题目如下 2.解题代码 #include<stdio.h> int majority(int a[],int n){ int i,count=1,c=a[0]; for(i=1;i<n;i++) { if(a[i]==c) count++; else { if(count>0) count--; ...
分类:
其他好文 时间:
2021-06-28 19:33:29
阅读次数:
0
appium官网:https://appium.io/docs/en/about-appium/getting-started/ 了解启动参数 https://appium.io/docs/en/writing-running-appium/caps/ 包括通用的和安卓和ios独有. 主要启动参数了 ...
分类:
移动开发 时间:
2021-06-28 19:08:54
阅读次数:
0
发现自己的基础太不牢固了 #include<bits/stdc++.h> using namespace std; int cnt=0; int dfs(int x) { if(x>=100)return x; dfs(x+1); dfs(x+2); } int main() { cout<<dfs ...
分类:
其他好文 时间:
2021-06-28 19:03:09
阅读次数:
0
##Retrofit网络请求框架 ##什么情况下会使用到这个技术? 在Andrroid开发中,网络请求十分常用,而在Android网络请求库中,Retrofit是当下最热的一个网络请求库。 ##学习该技术的原因 前端接口的编写主要使用Retrofit框架 ##技术的难点 对于第一次接触Retrofi ...
分类:
其他好文 时间:
2021-06-28 18:41:32
阅读次数:
0
tag:dp,组合计数 经典看完dp定义秒懂 考虑算出满足条件的再用总数减。若一个排列满足条件,那么就不能在遇到 \(a_i=n\) 之前返回。所以只需要考虑 \(a_i=n\) 前面的部分。 为什么使用dp?若一个排列扫完之后没有返回,那么单独把这个排列的任何一段区间拿出来扫,都不会返回,并且拿出 ...
分类:
其他好文 时间:
2021-06-28 18:36:49
阅读次数:
0
左侧部分已是历史的操作系统,右侧的还是活跃的操作系统。安卓系统Android 是Google开发的基于Linux平台的开源手机操作系统。它包括操作系统、用户界面和应用程序—— 移动电话工作所需的全部软件,而且不存在任何以往阻碍移动产业创新的专有权障碍。iOSiOS是由苹果公司开发的移动操作系统[1] ...
分类:
移动开发 时间:
2021-06-28 18:35:08
阅读次数:
0
set内是一颗红黑树,好像我以后也是要学的 注意set是会自动排序的,但是你根本找不到每一个数的排名 因为,set没这个功能,开一个数组记录一下就好了 所以我们现在有这么几个函数 #include<bits/stdc++.h> using namespace std; #define re regi ...
分类:
其他好文 时间:
2021-06-28 18:30:07
阅读次数:
0