-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfindKthNumber.cpp
73 lines (63 loc) · 1.33 KB
/
findKthNumber.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;
/*
//求mid
int kThCount(int m, int n, int mid)
{
}
*/
//bound是一个界限,确定数组中是否有>= k 个数字满足 <= bound。
bool enough(int bound, int m, int n, int k)
{
int count = 0;
for(int i = 1; i <= m; ++i)
{
count += min(bound / i, n); // 按行遍历,每行都是递增等差序列,所以可以找到每行中小于bound的数
}
return count >= k;
}
int findKthNumber(int m, int n, int k)
{
int low = 1, high = m * n;
while(low < high)
{
int mid = low + (high - low) / 2;
if(! enough(mid, m, n, k))
{
low = mid + 1;
}
else
{
high = mid;
}
}
return low;
/*
int left = 1, right = m * n;
while(left < right)
{
int mid = (left + right) / 2;
}
*/
/* int index = 0, min = 0; //记录上一个最小值
vector<int> vec;
vec.reserve(m * n);
for(int i = 1; i <= m; ++i)
{
for(int j = 1; j <= n; ++j)
{
vec.push_back(i * j);
}
}
cout << "vec.size: " << vec.size() << endl;
std::sort(vec.begin(), vec.end());
cout << "vec.size: " << vec.size() << endl;
return vec[k - 1];
*/
}
int main()
{
cout << findKthNumber(2, 3, 2) << endl;
}