码迷,mamicode.com
首页 >  
搜索关键字:pairs    ( 1028个结果
并查集--leetcode1202. 交换字符串中的元素
1202. 交换字符串中的元素 给你一个字符串 s,以及该字符串中的一些「索引对」数组 pairs,其中 pairs[i] = [a, b] 表示字符串中的两个索引(编号从 0 开始)。 你可以 任意多次交换 在 pairs 中任意一对索引处的字符。 返回在经过若干次交换后,s 可以变成的按字典序最 ...
分类:其他好文   时间:2021-01-22 12:27:19    阅读次数:0
[ABC187]AtCoder Beginner Contest 187
Tasks Task Name Time Limit Memory Limit A Large Digits 2 sec 1024 MB Submit B Gentle Pairs 2 sec 1024 MB Submit C 1-SAT 2 sec 1024 MB Submit D Choose ...
分类:其他好文   时间:2021-01-06 11:50:46    阅读次数:0
【AWS】超入門環境構築(3)ーーEC2構築
ステップ①: Create Key Pairs ◆public key ※:「*.pem」のキーは、一番重要のです。無くなったら、EC2のPCを登録できない ◆private key [public key]のように、新規を作成してください。 ステップ②:Create EC2 ◆create pub ...
分类:其他好文   时间:2020-12-14 13:05:39    阅读次数:3
22. 括号生成 Generate Parentheses
Given n pairs of parentheses, write a function to generate all combinations of well-formed parentheses. Input: n = 3Output: ["((()))","(()())","(())() ...
分类:其他好文   时间:2020-12-10 11:12:34    阅读次数:5
20.11.28 leetcode493翻转对
题目链接:https://leetcode-cn.com/problems/reverse-pairs/ 题意:给你一个数组,求满足i<j且nums[i]>2*num[j]的(i,j)对的数量 分析:本质上,就是对数组中的每一个元素,统计位于它左侧或右侧,且取值位于某个区间内的值的数量,和leetc ...
分类:其他好文   时间:2020-12-03 11:35:19    阅读次数:4
redis之RDB快照 1.0
对于redis来说,因为它保存在内存中,是内存性数据库,如果redis重启或者宕机后,其内存中的数据会全部丢失,所以应该想办法将内存中的数据进行持久化保存,等到下次redis重启或者恢复后能够根据这些持久化进行恢复 这里就用到了rdb快照技术,redis会将内存中的数据以rdb文件的形式保存,每当r ...
分类:数据库   时间:2020-11-12 14:00:50    阅读次数:12
[LeetCode 1530] Number of Good Leaf Nodes Pairs
Given the root of a binary tree and an integer distance. A pair of two different leaf nodes of a binary tree is said to be good if the length of the s ...
分类:其他好文   时间:2020-07-27 15:58:17    阅读次数:93
[LeetCode] 954. Array of Doubled Pairs 两倍数对儿数组
Given an array of integers A with even length, return true if and only if it is possible to reorder it such that A[2 * i + 1] = 2 * A[2 * i] for every ...
分类:编程语言   时间:2020-07-26 19:14:18    阅读次数:72
477. Total Hamming Distance
The Hamming distance between two integers is the number of positions at which the corresponding bits are different. Now your job is to find the total ...
分类:其他好文   时间:2020-07-16 12:06:09    阅读次数:75
532. K-diff Pairs in an Array
Given an array of integers and an integer k, you need to find the number of unique k-diff pairs in the array. Here a k-diff pair is defined as an inte ...
分类:其他好文   时间:2020-07-15 01:00:03    阅读次数:73
1028条   上一页 1 2 3 4 ... 103 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!