- 博客(65)
- 收藏
- 关注
原创 Java基础语法
Queue基础函数声明:Queue Q = new LinkedList()Q.add():队尾加入元素Q.peek():获取队首元素,不修改队列Q.poll():获取队首元素,同时该元素出队:同poll,但如果队列为空,remove抛出异常,poll返回nullQ.isEmpty():队列是否为空Q.size():队列的元素个数优先队列需要实现Comparator。
2024-04-10 23:33:12
440
1
原创 windows批处理文件-命名为1-n
在处理数据集的时候,将图片命名为1.jpg,2.jpg,3.jpg ......将图片放在文件夹内,在该文件夹内新建一个txt文档,重命名为***.bat(先勾选显示 文件扩展名)然后右键编辑,复制以下内容@echo offset n=0setlocal enabledelayedexpansionfor %%a in (*.jpg) do (set /a n+=1ren "%%a" "!n!.jpg")保存后关闭,运行bat文件即可。...
2020-08-17 19:35:08
334
原创 Codeforces-1313C2-Skyscrapers (hard version)(单调栈)
题目链接题意大小为n的数组表示摩天大楼的最大层数,要一个单峰的序列,求n栋楼的层数总和的最大值。思路easy版本可以用n2的方法,选取顶峰,然后求层数。用单调栈可以O(n)解决。单调栈基本思路讲解大概就是,用单调栈,就可以用O(n)的复杂度解决,数组向左(右)遍历,第一个比它小(大)的值。所以给一个数组a[n],就可以得到比a[i]小,在 i 的左边且位置离 i 最近的...
2020-02-26 18:22:31
465
原创 Codeforces-707D-Persistent Bookcase(主席树 单点修改 区间求和)
题目链接题意在书架上放书,有四种操作。1: 在(i , j)位置放书,如果有书就不放;2:在(i,j)位置拿走书,如果没有书就不拿;3:在第 i 个书柜,求异或,有书的变为无书,无书的变为有书;4:回到第k次修改的样子。1、2、3操作都是单点修改,可以用线段树维护。第4个操作需要前面线段树的信息,所以要建可持续化线段树。在线做法:主席树,O(nlogn);离线做...
2019-12-06 21:24:06
276
原创 2019ICPC南京-C-Digital Path(BFS+dp记录)
题目链接题意给了一个路径的定义,每次严格+1的走,能走的必须要走。求这样的路径长度大于4的有多少个。思路BFS搜索,但有个问题是如果两条路,有很大一部分是重复的,应该只走一遍。用入度出度,in,out记录,如果入度为0,则是起点,如果出度为0,则是终点。所有的起点入队,BFS。每次到达一个点,先让该点的入度减一,如果变为0,则入队。这样如果一个点有多个入度,就会只走一次。用...
2019-12-02 10:59:25
617
3
原创 Codeforces Round #373 div1 C-Sasha and Array(线段树维护矩阵 矩阵快速幂)
题目链接题意给一个数组,值表示第x个斐波那契数。有两个操作:区间求和:对区间的值求相应的斐波那契数,然后求和区间修改:对区间范围的数都加上y(代表的斐波那契数的下标往后加y个)假设f[0] = 0,f[1] = 1 ,f[2] = 2 。。。。然后求第k个斐波那契数就相当于把2*2的矩阵[ [1 1] [1 0] ]自乘k-1次,求m[0][0]就是了。线段...
2019-09-22 23:45:19
192
原创 POJ2411-Mondriaan's Dream(轮廓线DP)
题目链接题意用2*1的骨牌填充满m*n的矩阵,问有多少种不同的填法。思路有、没有用1、0表示,状压DP的思想,但是区别是用的是2*1的骨牌,填一行后可能会有不填的情况,所以轮廓线DP(或插头DP)就是解决这种每次一行不是整个的问题。记录的状态,不是一整行的状态,而可能是一个斜着的状态,状态的第一个位置并不一定对应着每行的第一个位置。轮廓线DP详解:https://blog.cs...
2019-09-22 10:24:08
201
原创 2019ICPC徐州网络赛-Longest subsequence(序列自动机 subsequence)
题目链接题意给两个字符串s1,s2,在s1中找一个子序列(subsequence)s0, s0的字典序大于s2,求子序列s0长度的最大值。序列自动机其实就是一个二维数组,s[i][j]记录了字符串第i位置之后(不包括第i位置)的第一个字母j的位置。j 表示的是 ch - ' a ' 。序列自动机void init(){ for(int i=n;i>=1;i...
2019-09-18 19:43:35
219
原创 POJ2104-K-th Number(静态主席树模板 区间第k小)
题目链接You are working for Macrohard company in data structures department. After failing your previous task about key insertion you were asked to write a new data structure that would be able to retur...
2019-09-17 14:06:42
237
原创 P3384 【模板】树链剖分-(树链剖分 模板入门题)
题目链接理解树链剖分和DFS序很像,都是将树形转化为线形然后用线段树维护。树链剖分和DFS序的唯一不同就在与走的方向不同:DFS序按照顺序走子结点,树链剖分先走重儿子。其他基本一致。有几个问题:求一个结点的子树的所有值。DFS序是连续的,所以这里体现不出来树链剖分的优势。求两个结点路径上的和。这里可以用LCA解决,用dis数组记录结点到根的距离,就可以dis [ x ] + dis...
2019-09-04 17:27:18
218
原创 Exponial (欧拉降幂)
题目链接题意求这个值思路欧拉降幂,刚南京网络赛补了题,找了一个再练练手....#include <bits/stdc++.h>using namespace std;typedef long long ll;ll phi(ll n){ ll k = (ll)sqrt(n+0.5); ll ans = n; for(int...
2019-09-02 22:51:48
174
原创 2019南京网络赛-B-super_log(欧拉降幂)
题目链接题意求幂塔函数,b个a mod m .扩展欧拉定理欧拉定理概念代码参考理解:这两种情况必须要分,但是特例很少,所以很多代码没有考虑到第二种情况(B>=phi(C))但是仍然可以过,应该是数据水,没有特例的情况,也可能不会出现特例??比如 6^1 % 2560 = 6 , 6^ (1+phi(2560)) %2560 => 6^...
2019-09-02 22:46:06
243
原创 2019南京网络赛-A-The beautiful values of the palace(树状数组 二维偏序)
题目链接题意一个螺旋的矩阵,大小为n*n,n一定为奇数。有m个位置有值,值就是螺旋矩阵上的值,其他没有列举的位置都为0. 给了x1,y1,x2,y2,求矩形区域(x1,y1)(x2,y2)内所有数的综合。思路求矩形区域,可以转化为求四个前缀和。但是1e6限制了不能用二维树状数组,所以求前缀和的时候按照Y从小到大的顺序,将二维转化为一维。会爆int,用ll存参考#inc...
2019-09-01 21:54:15
346
原创 HDU6681-Rikka with Cake(转化为线段树模型)
题目链接Problem DescriptionRikka's birthday is on June 12th. The story of this problem happens on that day.Today is Rikka's birthday. Yuta prepares a big cake for her: the shape of this cake is a rec...
2019-08-30 20:26:17
215
原创 2019西安邀请赛-And And And(树上点分治)
题目链接思路首先统计当前结点的子树有多少个结点sum(包括自己),以及统计从根走到当前结点的xor,因为两点的xor值和从两点走到根的xor值是一样的。情况分为两种,一种是两个点在同一条链上,一种是在两条链上。用map 维护 同链或者不同链的xor相等的个数。在不同链的情况,在先序位置求ans,在后序map加上数值,这样以后的点每次求and的时候,map中一定是与该点不同链的点...
2019-08-29 17:14:54
215
原创 小Z的袜子-(莫队入门)
题目链接思路首先是要暴力求解,根据上一个求出来的答案,通过移动L和R,一步一步的求ans。暴力过程这个暴力的复杂度和直接遍历区间没有区间,但是加上分块的思想,时间复杂度就降低为.具体是将区间分为块,左端点不在同一块的,按左端点排序;左端点在同一块的,按右端点排序。根号N的理解#include <iostream>#include <algorithm>...
2019-08-28 16:16:43
168
原创 2019CCPC网络赛-HDU6703-array (线段树 权值线段树?)
题目链接题意样例第一个 ,序列 4 3 1 2 5 ,有两个操作:1 5 :1操作,给第五个位置的数加10,000,000;2 1 1(op,r ,op): 2操作,找一个大于等于k的数,且和区间 [ 1,r ]中的数不相等,求这个数的最小值。思路设数组 a[ n ] 记录当前的序列,设数组 b [ n ] 反向记录数组a,即记录每个数出现的位置。如果 a [ ] 为 ...
2019-08-27 21:54:23
331
4
原创 Codeforces Round #581 div2 C. Anna, Svyatoslav and Maps(floyd)
题目链接题意给了一个有向图,然后给了一个序列,表示路径,要你缩短这个路径,就是去掉这个完整的路径的某一点,然后得到的路径长度最小值还是和完整的路径一样。思路第一个点和最后一个点是肯定要记录的,可以删的只有中间的点。能不能删,要看这个点对最短路径有没有影响。对于已经记录的点b[p],考虑是否删除的点b[i],和后继点b[i+1]. b[] 是记录第几个位置是什么点。题意是如果...
2019-08-27 21:13:27
206
原创 POJ2594-Treasure Exploration(DAG的最小路径覆盖 floyd)
题目链接Have you ever read any book about treasure exploration? Have you ever see any film about treasure exploration? Have you ever explored treasure? If you never have such experiences, you would neve...
2019-08-27 20:32:00
207
原创 POJ3368-Frequent values(RMQ)
题目链接You are given a sequence of n integers a1 , a2 , ... , an in non-decreasing order. In addition to that, you are given several queries consisting of indices i and j (1 ≤ i ≤ j ≤ n). For each quer...
2019-08-23 00:30:31
133
原创 HDU2844-Coins(多重背包 二进制优化 模板)
题目链接Problem DescriptionWhuacmers use coins.They have coins of value A1,A2,A3...An Silverland dollar. One day Hibix opened purse and found there were some coins. He decided to buy a very nice watch...
2019-08-22 23:39:07
204
原创 HDU1561-The more, The Better(树形DP 树形依赖背包)
题目链接Problem DescriptionACboy很喜欢玩一种战略游戏,在一个地图上,有N座城堡,每座城堡都有一定的宝物,在每次游戏中ACboy允许攻克M个城堡并获得里面的宝物。但由于地理位置原因,有些城堡不能直接攻克,要攻克这些城堡必须先攻克其他某一个特定的城堡。你能帮ACboy算出要获得尽量多的宝物应该攻克哪M个城堡吗?Input每个测试实例首先包括2个整数,N,M.(1...
2019-08-22 23:21:27
179
原创 HDU2586-How far away ?(LCA 树上两点路径 tarjan和RMQ做法)
题目链接Problem DescriptionThere are n houses in the village and some bidirectional roads connecting them. Every day peole always like to ask like this "How far is it if I want to go from house A to h...
2019-08-19 20:57:22
243
原创 POJ1330-Nearest Common Ancestors(LCA tarjan做法)
题目链接A rooted tree is a well-known data structure in computer science and engineering. An example is shown below:In the figure, each node is labeled with an integer from {1, 2,...,16}. Node 8 is the...
2019-08-19 19:49:28
194
原创 HDU1520-Anniversary party(树形DP 入门)
题目链接Problem DescriptionThere is going to be a party to celebrate the 80-th Anniversary of the Ural State University. The University has a hierarchical structure of employees. It means that the sup...
2019-08-19 14:48:40
155
原创 HDU4632-Palindrome subsequence(区间DP 回文子序列)
题目链接Problem DescriptionIn mathematics, a subsequence is a sequence that can be derived from another sequence by deleting some elements without changing the order of the remaining elements. For exa...
2019-08-19 14:20:12
210
原创 HDU3506-Monkey Party(区间DP 石子合并 四边形不等式优化)
题目链接Problem DescriptionFar away from our world, there is a banana forest. And many lovely monkeys live there. One day, SDH(Song Da Hou), who is the king of banana forest, decides to hold a big par...
2019-08-19 13:58:03
233
原创 HDU4283-You Are the One(区间dp 模拟栈)
题目链接Problem Description The TV shows such as You Are the One has been very popular. In order to meet the need of boys who are still single, TJUT hold the show itself. The show is hold in the Smal...
2019-08-16 23:56:17
401
原创 POJ2955-Brackets(区间dp 括号匹配)
题目链接We give the following inductive definition of a “regular brackets” sequence:the empty sequence is a regular brackets sequence, if s is a regular brackets sequence, then (s) and [s] are regula...
2019-08-16 22:50:54
174
原创 Codeforces Round #579 div3 E Boxers(思维)
题目链接题意给一行数有n个,对于每个数可以增大1,也可以减小1,也可以不变,要求修改后必须是正整数,不可为0。将修改后的数去重,问最多有几个?#include <bits/stdc++.h>using namespace std;int n,a[150005],vis[150005],cnt;int main(){ scanf("%d",&n)...
2019-08-14 18:05:02
136
原创 POJ2155-Matrix(二维树状数组)
题目链接DescriptionGiven an N*N matrix A, whose elements are either 0 or 1. A[i, j] means the number in the i-th row and j-th column. Initially we have A[i, j] = 0 (1 <= i, j <= N).We can chang...
2019-08-12 15:26:06
133
原创 POJ2299-Ultra-QuickSort(树状数组 离散化)
题目链接DescriptionIn this problem, you have to analyze a particular sorting algorithm. The algorithm processes a sequence of n distinct integers by swapping two adjacent sequence elements until the s...
2019-08-12 15:01:57
153
原创 POJ3321-Apple Tree(DFS序+线段树)
题目链接There is an apple tree outside of kaka's house. Every autumn, a lot of apples will grow in the tree. Kaka likes apple very much, so he has been carefully nurturing the big apple tree. The tree...
2019-08-11 08:24:45
202
原创 2019南昌邀请赛-Polynomial(拉格朗日插值法)
题目链接定义了 ,数字可能会非常大,所以对9999991取模。对于一个多项式,XH不知道任意一个 ,但是他知道 的值,他想要计算题意f(x)是n次多项式,有n+1个未知数,已知n+1个方程,所以可以f(x)是确定的。求Σf(x), x从L到R。拉格朗日插值法https://www.luogu.org/blog/attack/solution-p4781 分类:一...
2019-08-08 20:36:02
623
原创 POJ2528-Mayor's posters(线段树+离散化 or 分治+dfs)
题目链接DescriptionThe citizens of Bytetown, AB, could not stand that the candidates in the mayoral election campaign have been placing their electoral posters at all places at their whim. The city co...
2019-08-07 19:54:30
208
原创 POJ3468-A Simple Problem with Integers(线段树 区间更新 加和)
题目链接DescriptionYou have N integers, A1, A2, ... , AN. You need to deal with two kinds of operations. One type of operation is to add some given number to each number in a given interval. The other...
2019-08-06 18:52:54
117
原创 HDU1281-棋盘游戏(二分图建图)
题目链接Problem Description小希和Gardon在玩一个游戏:对一个N*M的棋盘,在格子里放尽量多的一些国际象棋里面的“车”,并且使得他们不能互相攻击,这当然很简单,但是Gardon限制了只有某些格子才可以放,小希还是很轻松的解决了这个问题(见下图)注意不能放车的地方不影响车的互相攻击。所以现在Gardon想让小希来解决一个更难的问题,在保证尽量多的“车”的前提下,棋盘里有...
2019-07-22 22:55:25
199
1
原创 HDU2444-The Accomodation of Students(二分图染色+最大匹配)
题目链接Problem DescriptionThere are a group of students. Some of them may know each other, while others don't. For example, A and B know each other, B and C know each other. But this may not imply th...
2019-07-22 22:19:44
143
原创 ACM2019陕西省赛-ZOJ4128-0689(思维)
We call a string as a 0689-string if this string only consists of digits ‘0’, ‘6’, ‘8’ and ‘9’. Given a 0689-string sss of length nnn, one must do the following operation exactly once: select a non-em...
2019-07-17 16:03:49
1561
1
原创 BZOJ4245-OR-XOR(二进制贪心)
题目链接给定一个长度为n的序列a[1],a[2],...,a[n],请将它划分为m段连续的区间,设第i段的费用c[i]为该段内所有数字的异或和,则总费用为c[1] or c[2] or ... or c[m]。请求出总费用的最小值。Input第一行包含两个正整数n,m(1<=m<=n<=500000),分别表示序列的长度和需要划分的段数。第一行包含n个整数,其中第...
2019-06-30 22:50:08
280
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人