blob: 93c9190c0eb97e5c0eead3230cba4a34714164a3 (
plain)
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
|
#define _CRT_SECURE_NO_WARNINGS
#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <vector>
#include <set>
#include <map>
#include <cmath>
#include <unordered_map>
#define x first
#define y second
#define pub push_back
#define MP make_pair
#define LL long long
using namespace std;
typedef pair<int, int> PII;
const int MAXN = 1e5 + 5;
int n, k, h[MAXN], w[MAXN];
bool check(int m) {
if (m == 0) return true;
int cnt = 0;
for (int i = 0; i < n; i++) {
cnt += (h[i] / m) * (w[i] / m);
}
return cnt >= k;
}
int main(void) {
cin >> n >> k;
int mx = 0;
for (int i = 0; i < n; i++) {
scanf("%d", &h[i]);
scanf("%d", &w[i]);
mx = max(mx, max(h[i], w[i]));
}
int l = 0, r = mx;
while (l < r) {
int m = (l + r + 1) >> 1;
if (check(m)) l = m;
else r = m - 1;
}
cout << r;
return 0;
}
|