题目链接 题意:求本质不同的串有多少 思路:求出最小表示法,如果最小表示法的字符串不同则本质不同。用一个人set记录,最后求得size。 #include<bits/stdc++.h> using namespace std; typedef long long ll; const int maxn ...
分类:
其他好文 时间:
2020-09-17 22:13:44
阅读次数:
33
一、Reading The dog is man's best friend. He can do many things for us. He can protect our homes. He can guide the blind. He is loyal to his master and ...
分类:
其他好文 时间:
2020-09-17 21:40:24
阅读次数:
37
报错信息: trying to create too many buckets. must be less than or equal to: [100000] but was [100001]. this limit can be set by changing the [search.max_b ...
分类:
其他好文 时间:
2020-09-17 19:52:17
阅读次数:
105
前言 苦力挖洞,靠运气赚点小钱。看着大佬严重,高危,再看看自己手上的低危,无危害默默流下了菜鸡的泪水 思路受局限,之前听学长推荐和同事聊到hacker101,因此通过hacker101拓展下漏洞利用思路 https://ctf.hacker101.com/ctf?congrats=many Triv ...
分类:
其他好文 时间:
2020-09-17 12:00:40
阅读次数:
78
mybatis 注解@Results、@Result、@ResultMap、@One的使用 column是数据库列名 property是实体类的属性名 javaType是实体类的类名(全路径格式) one对应的是一对一 many对应的是一对多 ...
分类:
其他好文 时间:
2020-07-29 12:36:35
阅读次数:
81
pymongo操作 MongoDB的一些方法: .数据库.表.delete_one( ) .数据库.表.insert_one( ) 新增一条 字典类 .数据库.表.insert_many( ) 新增多条 字典类 .数据库.表.replace_one( ) .数据库.表.update_one( ) . ...
分类:
其他好文 时间:
2020-07-26 19:14:01
阅读次数:
62
Passage 26 Many researchers use the term Artificial Intelligence (AI) to describe the thinking and intelligent behavior demonstrated by machines. Whil ...
分类:
其他好文 时间:
2020-07-26 01:02:29
阅读次数:
75
这里我们用虚拟机进行模拟问题。 有一天突然发现网站页面打不开了,报500错误,赶紧查看日志,发现报错如下 [Fri Jul 24 11:02:20.686132 2020] [:error] [pid 2322] [remote 10.0.0.253:8] IOError: [Errno 24] T ...
分类:
其他好文 时间:
2020-07-24 16:32:10
阅读次数:
87
题目链接:http://codeforces.com/contest/71/problem/A Sometimes some words like "localization" or "internationalization" are so long that writing them many ...
分类:
其他好文 时间:
2020-07-23 22:29:02
阅读次数:
80
HDU - 2157 构造矩阵,用于转移走一步的情况。 若$i$能走到$j$,则$g[j][i]=1$,否则为$0$ 然后一开始只有$A$点累计有一种走法。 所以最后计算矩阵的$k$次方,输出$g[B][A]$即可。 #include<bits/stdc++.h> using namespace s ...
分类:
其他好文 时间:
2020-07-21 22:30:21
阅读次数:
61