0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-16 20:05:26 +00:00

P4377 [USACO18OPEN] Talent Show G

https://www.luogu.com.cn/record/85978845
This commit is contained in:
Baoshuo Ren 2022-09-06 08:55:24 +08:00
parent d2aea3e36a
commit aaba30fc60
Signed by: baoshuo
GPG Key ID: 00CB9680AB29F51A
21 changed files with 116 additions and 0 deletions

56
Luogu/P4377/P4377.cpp Normal file
View File

@ -0,0 +1,56 @@
#include <iostream>
#include <algorithm>
#include <cmath>
using std::cin;
using std::cout;
const char endl = '\n';
const int N = 255,
W = 1005;
const double eps = 1e-6;
int n, w, a[N], b[N];
double f[W];
bool check(double x) {
std::fill_n(f + 1, w, -1e9);
for (int i = 1; i <= n; i++) {
for (int j = w; j >= 0; j--) {
int k = std::min(w, j + a[i]);
f[k] = std::max(f[k], f[j] + b[i] - x * a[i]);
}
}
return f[w] >= 0;
}
int main() {
std::ios::sync_with_stdio(false);
cin.tie(nullptr);
cin >> n >> w;
for (int i = 1; i <= n; i++) {
cin >> a[i] >> b[i];
}
double l = 0,
r = 1e6;
while (r - l > eps) {
double mid = (l + r) / 2;
if (check(mid)) {
l = mid;
} else {
r = mid;
}
}
cout << static_cast<int>(std::floor(l * 1000)) << endl;
return 0;
}

BIN
Luogu/P4377/data/P4377_1.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Luogu/P4377/data/P4377_1.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Luogu/P4377/data/P4377_10.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Luogu/P4377/data/P4377_10.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Luogu/P4377/data/P4377_2.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Luogu/P4377/data/P4377_2.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Luogu/P4377/data/P4377_3.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Luogu/P4377/data/P4377_3.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Luogu/P4377/data/P4377_4.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Luogu/P4377/data/P4377_4.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Luogu/P4377/data/P4377_5.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Luogu/P4377/data/P4377_5.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Luogu/P4377/data/P4377_6.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Luogu/P4377/data/P4377_6.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Luogu/P4377/data/P4377_7.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Luogu/P4377/data/P4377_7.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Luogu/P4377/data/P4377_8.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Luogu/P4377/data/P4377_8.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Luogu/P4377/data/P4377_9.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Luogu/P4377/data/P4377_9.out (Stored with Git LFS) Normal file

Binary file not shown.