题目描述 There are two sequences a1,a2,...,an , b1,b2,...,bn . Let . There are m operations within three kinds as following:? 1 x y: change value ax to y. ...
分类:
其他好文 时间:
2019-04-06 11:08:08
阅读次数:
130
Little Elephant and Magic Square CodeForces - 259B Little Elephant loves magic squares very much. A magic square is a 3?×?3 table, each cell contains ...
分类:
其他好文 时间:
2019-04-02 21:15:04
阅读次数:
180
Two Merged Sequences 感觉是个垃圾题啊, 为什么过的人这么少。。 dp[ i ][ 0 ]表示处理完前 i 个, 第 i 个是递增序列序列里的元素,递减序列的最大值。 dp[ i ][ 1 ]表示处理完前 i 个, 第 i 个是递减序列序列里的元素,递增序列的最大值。 然后随便转 ...
分类:
其他好文 时间:
2019-04-01 01:12:16
阅读次数:
136
题目大意: 有一个连通的迷宫,你可以理解为一个 $n$ 个点 $m$ 条边的无向连通图。有 些点可能有陷阱,保证 $1$ 号点没有陷阱而 $n$ 号点存在陷阱。一开始你有 $k$ 条命,每进入一个有陷阱的点你会损失一条命。 DZY听说这个游戏有一个隐藏关卡:如果进入 $n$ 号点时你恰好剩余 $2$ ...
分类:
其他好文 时间:
2019-03-26 15:06:41
阅读次数:
232
Given two sequences pushed and popped with distinct values, return true if and only if this could have been the result of a sequence of push and pop o ...
分类:
其他好文 时间:
2019-03-23 10:33:46
阅读次数:
233
Levenshtein Distance The Levenshtein distance is a string metric for measuring the difference between two sequences. Informally, the Levenshtein dista ...
分类:
编程语言 时间:
2019-03-18 13:35:17
阅读次数:
167
77、Which two statements are true about sequences created in a single instance database? (Choose two.) A. When the MAXVALUElimit for the sequence is re ...
分类:
其他好文 时间:
2019-03-18 10:21:12
阅读次数:
161
1. 必须以管理员身份登录;2. sequence_owner必须为大写,不管你的用户名是否大写。只有大写才能识别。--查看当前用户的所有序列 select SEQUENCE_OWNER,SEQUENCE_NAME from dba_sequences where sequence_owner='用 ...
分类:
数据库 时间:
2019-03-17 18:21:28
阅读次数:
284
题面以及思路:https://blog.csdn.net/glqac/article/details/38402101 代码: ...
分类:
其他好文 时间:
2019-03-17 18:20:13
阅读次数:
153
大意: 求n!在b进制下末尾0的个数 等价于求n!中有多少因子b, 素数分解一下, 再对求出所有素数的最小因子数就好了 ...
分类:
其他好文 时间:
2019-03-10 22:22:04
阅读次数:
241