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

P3112 [USACO14DEC]Guard Mark G

https://www.luogu.com.cn/record/85668298
This commit is contained in:
Baoshuo Ren 2022-09-02 08:55:23 +08:00
parent ef580a25a7
commit b07ef359ca
Signed by: baoshuo
GPG Key ID: 00CB9680AB29F51A
29 changed files with 156 additions and 0 deletions

72
Luogu/P3112/P3112.cpp Normal file
View File

@ -0,0 +1,72 @@
#include <iostream>
#include <algorithm>
#include <limits>
#include <tuple>
using std::cin;
using std::cout;
const char endl = '\n';
const int N = 25;
int n, h, ans = -1;
std::tuple<int, int, int> a[N];
bool vis[N];
void dfs(int x) {
if (x == n + 1) {
int hh = 0, ss = std::numeric_limits<int>::max();
for (int i = 1; i <= n; i++) {
if (!vis[i]) continue;
hh += std::get<0>(a[i]);
int sum = 0;
for (int j = i + 1; j <= n; j++) {
if (!vis[j]) continue;
sum += std::get<1>(a[j]);
}
ss = std::min(ss, std::get<2>(a[i]) - sum);
}
if (hh >= h) {
ans = std::max(ans, ss);
}
return;
}
dfs(x + 1);
vis[x] = true;
dfs(x + 1);
vis[x] = false;
}
int main() {
std::ios::sync_with_stdio(false);
cin.tie(nullptr);
cin >> n >> h;
for (int i = 1; i <= n; i++) {
cin >> std::get<0>(a[i]) >> std::get<1>(a[i]) >> std::get<2>(a[i]);
}
std::sort(a + 1, a + 1 + n, [&](decltype(a[0]) x, decltype(a[0]) y) -> bool {
return std::get<1>(x) + std::get<2>(x) > std::get<1>(y) + std::get<2>(y);
});
dfs(0);
if (ans == -1) {
cout << "Mark is too tall" << endl;
} else {
cout << ans << endl;
}
return 0;
}

BIN
Luogu/P3112/data/1.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Luogu/P3112/data/1.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Luogu/P3112/data/10.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Luogu/P3112/data/10.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Luogu/P3112/data/11.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Luogu/P3112/data/11.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Luogu/P3112/data/12.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Luogu/P3112/data/12.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Luogu/P3112/data/13.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Luogu/P3112/data/13.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Luogu/P3112/data/14.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Luogu/P3112/data/14.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Luogu/P3112/data/2.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Luogu/P3112/data/2.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Luogu/P3112/data/3.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Luogu/P3112/data/3.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Luogu/P3112/data/4.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Luogu/P3112/data/4.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Luogu/P3112/data/5.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Luogu/P3112/data/5.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Luogu/P3112/data/6.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Luogu/P3112/data/6.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Luogu/P3112/data/7.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Luogu/P3112/data/7.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Luogu/P3112/data/8.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Luogu/P3112/data/8.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Luogu/P3112/data/9.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
Luogu/P3112/data/9.out (Stored with Git LFS) Normal file

Binary file not shown.