题目如下: A Stepping Number is an integer such that all of its adjacent digits have an absolute difference of exactly 1. For example, 321 is a Stepping Nu ...
分类:
其他好文 时间:
2019-10-07 09:33:56
阅读次数:
80
1 typedef long long ll; 2 typedef pair<int,int> P; 3 #define _for(i,a,b) for(register int i = (a);i < b;i ++) 4 #define _rep(i,a,b) for(register int i... ...
分类:
其他好文 时间:
2019-10-06 15:10:43
阅读次数:
74
差分约束 截取到的一个博客 (只截取了我觉得好的部分): 1、数形结合 如若一个系统由n个变量和m个不等式组成,并且这m个不等式对应的系数矩阵中每一行有且仅有一个1和 1,其它的都为0,这样的系统称为差分约束( difference constraints )系统。引例中的不等式组可以表示成如图三 ...
分类:
其他好文 时间:
2019-10-06 09:50:02
阅读次数:
101
集合 只保留下来唯一的元素 {123, 456, 789} 集合的操作1.并集:union、| 2.交集:intersection、&3.差:difference、-4.子集:issubset ...
分类:
其他好文 时间:
2019-10-05 20:14:10
阅读次数:
92
Redis是一种高级key-value数据库。它跟memcached类似,不过数据可以持久化,而且支持的数据类型很丰富。有字符串,链表,集 合和有序集合。支持在服务器端计算集合的并,交和补集(difference)等,还支持多种排序功能。所以Redis也可以被看成是一个数据结构服务 器。Redis的 ...
分类:
其他好文 时间:
2019-10-04 20:33:21
阅读次数:
92
链接: https://codeforces.com/contest/1234/problem/B2 题意: The only difference between easy and hard versions are constraints on n and k. You are messagin ...
分类:
Web程序 时间:
2019-10-02 22:39:26
阅读次数:
213
An arithmetic progression is such a non-empty sequence of numbers where the difference between any two successive numbers is constant. This constant n ...
分类:
其他好文 时间:
2019-10-02 10:33:46
阅读次数:
96
The only difference between easy and hard versions is the number of elements in the array. You are given an array aa consisting of nn integers. In one ...
分类:
其他好文 时间:
2019-09-26 23:09:11
阅读次数:
63
题目如下: Given an array of distinct integers arr, find all pairs of elements with the minimum absolute difference of any two elements. Return a list of p ...
分类:
其他好文 时间:
2019-09-25 10:51:44
阅读次数:
99
题目: In this simple exercise, you will create a program that will take two lists of integers, a and b. Each list will consist of 3 positive integers ab ...
分类:
其他好文 时间:
2019-09-24 13:51:41
阅读次数:
102