diff options
author | Yuqian Yang <crupest@crupest.life> | 2025-02-28 23:13:39 +0800 |
---|---|---|
committer | Yuqian Yang <crupest@crupest.life> | 2025-02-28 23:13:39 +0800 |
commit | dc1f0c4c0096013799416664894c5194dc7e1f52 (patch) | |
tree | 2f5d235f778cd720f4c39ec3e56b77ba6d99f375 /works/life/algorithm-contest-2/solution/4.cpp | |
parent | 7299d424d90b1effb6db69e3476ddd5af72eeba4 (diff) | |
download | crupest-dc1f0c4c0096013799416664894c5194dc7e1f52.tar.gz crupest-dc1f0c4c0096013799416664894c5194dc7e1f52.tar.bz2 crupest-dc1f0c4c0096013799416664894c5194dc7e1f52.zip |
chore(store): move everything to store.
Diffstat (limited to 'works/life/algorithm-contest-2/solution/4.cpp')
-rw-r--r-- | works/life/algorithm-contest-2/solution/4.cpp | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/works/life/algorithm-contest-2/solution/4.cpp b/works/life/algorithm-contest-2/solution/4.cpp deleted file mode 100644 index 93c9190..0000000 --- a/works/life/algorithm-contest-2/solution/4.cpp +++ /dev/null @@ -1,48 +0,0 @@ -#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;
-}
\ No newline at end of file |