MS932(Java) + JA16SJIS(Oracle)的情况下,有些字会出现乱码。这个问题,是由于Shift-JIS和MS932对这些字的unicode映射不同造成的。比如: ~   SJIS:U+301C   MS932:U+FF5E 虽然,MS932是微软在Shift JIS的基础上,扩展的13区和89-92区以及115-119的编码,但在个别字
原创 2010-05-11 17:23:13
10000+阅读
For some fixed N, an array A is beautiful if it is a permutation of the integers 1, 2, ..., N, such that: For every i < j, there is no k with i < k <
转载 2019-01-31 22:37:00
50阅读
2评论
A. Palindromic Supersequence time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output You are giv
原创 2021-12-27 16:51:15
90阅读
D. Tree time limit per test 2 seconds memory limit per test 512 megabytes input standard input output standard output You are given a node of the tree
原创 2021-12-27 16:51:14
82阅读
一、内容对于某些固定的 N,如果数组 A 是整数 1, 2, ..., N 组成的排列,使得:对于每个 i < j,都不存在 k 满足 i < k < j 使得 A[k] * 2 = A[i] + A[j]。那么数组 A 是漂亮数组。 给定 N,返回任意漂亮数组 A(保证存在一个)。 示例 1:输入:4输出:[2,1,4,3]示例 2:输入:5输出:[3,1,2,5,4] 提示: 1 <= N <= 1000二、思
原创 2022-04-11 10:00:17
92阅读
Discription You have a team of N people. For a particular task, you can pick any
转载 2018-02-16 14:48:00
98阅读
2评论
B. Recursive Queries time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output B. Recursive Querie
原创 2021-12-27 16:51:15
80阅读
E. Team Work time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output You have a team of N people
原创 2021-12-27 16:51:14
96阅读
C. Permutation Cycle time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output For a permutation P
原创 2021-12-27 16:51:14
159阅读
CF932E Team Work 求 \[ \sum_{i=1}^{N}C_N^ii^k \] \(1\le N\le 1e9, 1\le k \le 5000\) $N$很大,考虑把$N$消成$k$表示的式子。 首先$i^k$可以转为第二类斯特林数和下降幂表示的式子 \[ \begin{align ...
传送门 题目大意 https://www.luogu.org/problemnew/show/CF932F 分析 我们可以从叶子向根每次插入b和ans 所以我们不难发现就是相当于插入线段 于是李超树+线段树合并即可 代码
转载 2019-02-20 14:05:00
31阅读
2评论
"题目" luogu的Romtejudge挂了我就当我过了吧 求 $$\sum_{i=1}^n\binom{n}{i}i^k$$ 其实是个思博套路题,但是我现在这个水平还是刷刷板子吧 处理$x^k$是一个套路了 $$x^k=\sum_{i=1}^k\begin{Bmatrix} k \\i \end
转载 2019-05-14 21:41:00
118阅读
2评论
"Link" $$ \begin{aligned} ans&=\sum\limits_{i=1}^n{n\choose i}i^k\\ &=\sum\limits_{i=1}^n\frac{n!}{i!(n i)!}\sum\limits_{j=1}^{\min(i,k)}\left\{k\atop
转载 2020-04-14 21:04:00
37阅读
2评论
题目展开题目描述You are given a tree with nn nodes (numbered from 11 to nn ) rooted at node 11 . Also, each node has two values associated with it. The values for ii -th node are a_{i}ai​ and b_{i}bi​ .You can jump from a node to any node in its subtree.
原创 2021-07-13 13:48:42
73阅读
Team Work 发现网上没有我这种写法。。 i ^ k我们可以理解为对于每个子集我们k个for套在一起数有多少个。 那么我们问题就变成了 任意可重复位置的k个物品属于多少个子集。 然后我们枚举k个物品所占位置的个数 i , 然后需要计算有多少种方案能把k个不同物品放入i个桶中。 这个东西可以用d
转载 2019-02-20 01:44:00
48阅读
2评论
全部学习汇总: https://github.com/GreyZhang/editors_skillsEmacs中有一个major mode的概念,之前对于这个也是似懂非懂。在我的知识体系中,我只知道这个是可以切换的,而每一个mode可以通过hook收集一些插件的功能。这次,对这个概念做一个简单的整理。我们处理的文件到了emacs的环境中,对应的处理对等对象称之为buffer。每一个buffer都有一个绑定的major mode。Major mode是一系列的emacs的行为的集合,主要是针对专门的
原创 2021-12-30 17:19:59
91阅读
III.III.CF932F Escape Through Leaf 明显DP式很容易写出;然后观察发现其就是子树中一堆函数 \(y=kx+b\) 中对于某个 \(x\) 的 \(y\) 的最小值,于是线段树合并李超树就OK了。 需要注意的是,李超树因为每个节点都存了一条直线(相当于标记永久化),因
转载 2021-04-06 10:35:00
69阅读
全部学习汇总: https://github.com/GreyZhang/editors_skillsEmacs中有一个major mode的概念,之前对于这个也是似懂非懂。在我的知识体系中,我只知道这个是可以切换的,而每一个mode可以通过hook收集一些插件的功能。这次,对这个概念做一个简单的整理。我们处理的文件到了emacs的环境中,对应的处理对等对象称之为buffer。每一个buffer都有一个绑定的major mode。Major mode是一系列的emacs的行为的集合,主要是针对专门的
原创 2022-01-06 16:35:13
67阅读
F. Escape Through Leaf time limit per test 3 seconds memory limit per test 256 megabytes input standard input output standard output You are given a t
原创 2021-12-27 16:39:47
78阅读
一个不是很难的题目,因为读题问题居然做了好久。树上倍增做的也不多较简单,直接普通的倍增即可。设置dp[i][j],表示点i往上第j个比递增的点,s[i][j]表示从dp[i][j
原创 2022-08-25 11:06:03
56阅读
  • 1
  • 2
  • 3
  • 4
  • 5