题目 Atcoder 思路 代码 #include <iostream> using namespace std; const int N = 200010; int n, m, a[N], b[N]; int check(int mid) { for (int i = 1; i <= n * 2 ...
分类:
其他好文 时间:
2021-06-02 15:33:04
阅读次数:
0
题目 Atcoder 思路 代码 #include <iostream> #include <cstring> #include <algorithm> using namespace std; const int N = 100010; int n, w[4][N], to[N], st[N]; ...
分类:
其他好文 时间:
2021-06-02 15:31:22
阅读次数:
0
题目 Atcoder 思路 代码 #include <iostream> #include <algorithm> #include <cstring> using namespace std; const int N = 100010, M = N << 1; int n, m; int h[N] ...
分类:
其他好文 时间:
2021-06-02 15:30:41
阅读次数:
0
解决办法有两种: 1、去掉默认密钥环的密码: 打开应用程序->附件->密码和加密密钥(如果你的没有,在终端中输入 seahorse),切换到密码选项卡,会看到一个密码密钥环(我的密钥环是 login), 右击->更改密码,然后在“旧密码”中填入系统登录密码,其他不用填,直接确定,并选择“使用不安全的 ...
分类:
其他好文 时间:
2021-06-02 15:29:39
阅读次数:
0
JS输入输出 1.浏览器弹出输入框 <script type="text/javascript"> prompt('这是一个输入框'); </script> 2.浏览器弹出警告框 <script type="text/javascript"> alert('这是一个警告框'); </script> ...
分类:
Web程序 时间:
2021-06-02 15:29:05
阅读次数:
0
html: <div class="mydiv1"></div> css: .mydiv1 { width: 100px; height: 100px; background: red; position: absolute; } js: let mydiv1 = document.querySel ...
分类:
Web程序 时间:
2021-06-02 15:25:39
阅读次数:
0
不积跬步,无以至千里;不积小流,无以成江海。 FastJSON 将 Java 对象转换为 JSON 格式,也可以将 JSON 字符串转换为 Java 对象。 依赖: <dependency> <groupId>com.alibaba</groupId> <artifactId>fastjson</a ...
分类:
编程语言 时间:
2021-06-02 15:24:12
阅读次数:
0
/* 斐波拉契序列 1 1 2 3 5 8 13 .。 。。。。。 除了1,2之外,每一项是前两项的和*/#include<stdio.h>//在vc2010中是以c的后缀来用c语言文件的void main(void)//int main(void) 注意不返回任何值的话要在main的括号里面加入v ...
分类:
其他好文 时间:
2021-06-02 15:22:43
阅读次数:
0
one step, whole life 1. Architecture 1. <IDDD> stu, practice 2. <MicSer DP> stu 3. <Reactice Messaging Patterns> 2.Java Feature 1. Rx 2. WebFlux 3.Jav ...
分类:
其他好文 时间:
2021-06-02 15:20:57
阅读次数:
0
5.2 进阶2:条件查询 条件查询:根据条件过滤原始表的数据,查询到想要的数据 5.2.1 语法 select #第三步 要查询的字段|表达式|常量值|函数 from #第二步 表明 where #第一步 条件语句; 5.2.2 查询的分类 条件表达式 示例:salary>10000 条件运算符:> ...
分类:
其他好文 时间:
2021-06-02 15:18:07
阅读次数:
0