题目如下: Given two strings: s1 and s2 with the same size, check if some permutation of string s1 can break some permutation of string s2 or vice-versa (i ...
分类:
其他好文 时间:
2020-06-03 23:41:15
阅读次数:
108
题目如下: You are given an integer num. You will apply the following steps exactly two times: Pick a digit x (0 <= x <= 9). Pick another digit y (0 <= y < ...
分类:
其他好文 时间:
2020-06-03 23:33:43
阅读次数:
70
解决端口占用 Windows上端口占用会提示诸如以下错误: Fatal error. can't bind to 127.0.0.1:10809: There may be another Privoxy or some other proxy running on port 10809 解决该异常 ...
Manhattan Wiring 题意: There is a rectangular area containing n × m cells. Two cells are marked with “2”, and another two with “3”. Some cells are occup ...
分类:
其他好文 时间:
2020-05-31 16:26:04
阅读次数:
66
解释 Project Lombok is a java library that automatically plugs into your editor and build tools, spicing up your java. Never write another getter or equ ...
分类:
其他好文 时间:
2020-05-30 13:10:31
阅读次数:
99
D. Yet Another Yet Another Task 题意 给出一个长度为$n$的整数数组,让找出一个连续子序列,它的和减去最大值是最大的。 思路 我写的代码有点多了。。。 ST表+单调队列。 因为是减去最大值,所以我们可以枚举每个数字作为最大值。 左边第一个大于它的数字到右边第一个大于它 ...
分类:
其他好文 时间:
2020-05-29 23:07:00
阅读次数:
131
题目链接:https://codeforces.com/contest/1359/problem/D 题解 枚举所有可能的情况,其中一定有一个是正确答案。 即每次枚举去掉的最大值,取最大连续子序列的和。 代码 #include <bits/stdc++.h> using namespace std; ...
分类:
其他好文 时间:
2020-05-29 19:31:35
阅读次数:
164
Java 支持三种注释方式。前两种分别是 // 和 /* */,第三种被称作说明注释,它以 /** 开始,以 */结束。 说明注释允许你在程序中嵌入关于程序的信息。你可以使用 javadoc 工具软件来生成信息,并输出到HTML文件中。 说明注释,使你更加方便的记录你的程序信息。 javadoc 标 ...
分类:
编程语言 时间:
2020-05-28 16:22:53
阅读次数:
54
Git操作的过程中显示 Another git process semms to be running in this repository, e.g. an editor opened by ‘git commit’. Please make sure all processes are term ...
分类:
其他好文 时间:
2020-05-27 12:19:44
阅读次数:
73
UNDO What Is Undo? Oracle Database creates and manages information that is used to roll back, or undo, changes to the database. Such information consi ...
分类:
其他好文 时间:
2020-05-26 01:06:47
阅读次数:
100