码迷,mamicode.com
首页 >  
搜索关键字:smallest    ( 560个结果
PAT Advanced 1038 Recover the Smallest Number (30分)
Given a collection of number segments, you are supposed to recover the smallest number from them. For example, given { 32, 321, 3214, 0229, 87 }, we c ...
分类:其他好文   时间:2020-01-28 19:08:30    阅读次数:82
PAT Advanced 1144 The Missing Number (20分)
Given N integers, you are supposed to find the smallest positive integer that is NOT in the given list. Input Specification: Each input file contains ...
分类:其他好文   时间:2020-01-27 17:28:02    阅读次数:71
Smallest Range II
2020-01-21 21:43:52 问题描述: 问题求解: 这个题目还是有点难度的,感觉很巧妙也很难想到。 整体的思路如下: 1. 首先原问题等价于 +0 / + 2*K 2. 那么res = Max - Min 3. 不断更新Max,Min期望得到更小的res public int small ...
分类:其他好文   时间:2020-01-21 23:44:05    阅读次数:80
poj2718 Smallest Difference
题目 :http://poj.org/problem?id=2718 给一组十进制数,从中选出若干数字组成一个多位数,剩下的数字组成另一个数字,要求找到最小的选取组合,使得这两个数字的绝对值差最小。 样例输入 : 1 0 1 2 4 6 7 样例输出 : 28 思路 : 因为最多只有10个数字可供选 ...
分类:其他好文   时间:2020-01-17 13:53:27    阅读次数:59
UVA11997 K Smallest Sums
"题目" 一句话题意 , 有 k 个长为 k 的序列 , 从其中每个序列选一个数 $k^k$ 个和中输出前k小 考虑 有两个长为n的序列 , 从他们中选出$n$最小的和 , 可以用一个很妙的想法 在优先队列里 , 存$(a_1 + b_1 , 1) , (a_2 + b_1 , 1) , (a_3 ...
分类:其他好文   时间:2020-01-06 09:53:58    阅读次数:55
【leetcode】1283. Find the Smallest Divisor Given a Threshold
题目如下: Given an array of integers nums and an integer threshold, we will choose a positive integer divisor and divide all the array by it and sum the r ...
分类:其他好文   时间:2019-12-11 23:30:40    阅读次数:74
[LC] 230. Kth Smallest Element in a BST
Given a binary search tree, write a function kthSmallest to find the kth smallest element in it. Note:You may assume k is always valid, 1 ≤ k ≤ BST's ...
分类:其他好文   时间:2019-12-07 10:18:19    阅读次数:76
PAT甲级——A1144 TheMissingNumber【20】
Given N integers, you are supposed to find the smallest positive integer that is NOT in the given list. Input Specification: Each input file contains ...
分类:其他好文   时间:2019-11-21 22:58:17    阅读次数:83
378. Kth Smallest Element in a Sorted Matrix
import java.util.* /** * 378. Kth Smallest Element in a Sorted Matrix * https://leetcode.com/problems/kth-smallest-element-in-a-sorted-matrix/descript... ...
分类:其他好文   时间:2019-10-28 00:44:03    阅读次数:96
TOJ4244: Sum
描述 Given a sequence, we define the seqence's value equals the difference between the largest element and the smallest element in the sequence. As an e ...
分类:其他好文   时间:2019-10-08 14:34:06    阅读次数:73
560条   上一页 1 ... 3 4 5 6 7 ... 56 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!