题目链接:https://vjudge.net/problem/HDU-1074 Ignatius has just come back school from the 30th ACM/ICPC. Now he has a lot of homework to do. Every teacher ...
分类:
其他好文 时间:
2020-06-05 13:08:02
阅读次数:
72
\[ \texttt{Description} \] 有一个名为 233 的矩阵 a。 对于第一行,有 \(a_{0, 1} = 233\),\(a_{0, 2} = 2333\),\(a_{0,3} = 23333\) ... 对于 \(\forall i, j \neq 0\),有 \(a_{i ...
分类:
其他好文 时间:
2020-06-04 21:37:22
阅读次数:
59
题目链接 #题目大意 有n个编号为0~n的物品,并且有两个操作,分别是将两个物品合并在一个集合里和把一个物品从集合里取出来,问最后有多少个集合。 #解题思路 本题主要是如何把物品从集合中取出,可以设立一个与原物品编号不同的点作为辅助点。这样挂在同一个辅助点的物品都是属于同一个集合的,而挂在不同辅助点 ...
分类:
其他好文 时间:
2020-06-04 14:01:12
阅读次数:
52
禁用词语(织梦dedecms系统讲直接停止用户动作)用|分开,但不要在结尾加|(cfg_notallowstr):系统禁用词语设置,系统在进行互动操作过程中, 如果有用户提交这些信息,系统将会显示“has not allow words!”,关键词用“|”分开,并且不要在结尾加上“|”https:/ ...
分类:
其他好文 时间:
2020-06-02 13:05:01
阅读次数:
67
题目大意 给定若干单词,按字典序输出由两个单词拼接而成的单词 思路分析 用set存储所有单词,枚举每个单词word,遍历word的所有左右子串组合情况,若左右子串均在set中,说明符合题意。时间复杂度O(n*len*len),len为单词长度,n为单词总个数 #include<bits/stdc++ ...
分类:
其他好文 时间:
2020-06-02 00:15:30
阅读次数:
86
HDU-5608(杜教筛) 题意:\(G(n)=n^2?3n+2=\sum_{d|n}F(d)\),求$\sum_1^nF(i)$ 反演得到:\(F(n)=\sum_{d|n}\mu(d)G(\frac{n}{d})\) 则$\sum_1^nF(i)=\sum_i\sum_{d|i}\mu(d)G( ...
分类:
其他好文 时间:
2020-06-01 20:47:19
阅读次数:
44
此博客链接:https://www.cnblogs.com/ping2yingshi/p/13027189.html 反转字符串中的字符串() 题目链接:https://leetcode-cn.com/problems/reverse-words-in-a-string-iii/ 给定一个字符串,你 ...
分类:
其他好文 时间:
2020-06-01 20:28:19
阅读次数:
76
题目链接:https://vjudge.net/problem/HDU-1176 都说天上不会掉馅饼,但有一天gameboy正走在回家的小径上,忽然天上掉下大把大把的馅饼。说来gameboy的人品实在是太好了,这馅饼别处都不掉,就掉落在他身旁的10米范围内。馅饼如果掉在了地上当然就不能吃了,所以ga ...
分类:
其他好文 时间:
2020-05-31 19:55:08
阅读次数:
55
背景 Read the fucking source code! --By 鲁迅 A picture is worth a thousand words. --By 高尔基 说明: Kernel版本:4.14 ARM64处理器,Contex-A53,双核 使用工具:Source Insight 3. ...
分类:
系统相关 时间:
2020-05-31 12:38:36
阅读次数:
126
题目链接:https://vjudge.net/problem/HDU-1069 A group of researchers are designing an experiment to test the IQ of a monkey. They will hang a banana at the ...
分类:
其他好文 时间:
2020-05-30 13:06:28
阅读次数:
65