0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-16 19:45:24 +00:00

2794. [POI2012] Cloakroom

https://hydro.ac/d/bzoj/record/6322ee0c32ae6c3198cc9eee
This commit is contained in:
Baoshuo Ren 2022-09-15 17:19:46 +08:00
parent 487d68a098
commit 5ef3680762
Signed by: baoshuo
GPG Key ID: 00CB9680AB29F51A
35 changed files with 166 additions and 0 deletions

64
BZOJ/2794/2794.cpp Normal file
View File

@ -0,0 +1,64 @@
#include <iostream>
#include <algorithm>
#include <limits>
#include <tuple>
using std::cin;
using std::cout;
const char endl = '\n';
const int N = 1005,
P = 1e6 + 5;
int n, p, f[P];
bool ans[P];
std::tuple<int, int, int> a[N];
std::tuple<int, int, int, int> b[P];
int main() {
std::ios::sync_with_stdio(false);
cin.tie(nullptr);
cin >> n;
for (int i = 1; i <= n; i++) {
cin >> std::get<2>(a[i]) >> std::get<0>(a[i]) >> std::get<1>(a[i]);
}
std::sort(a + 1, a + 1 + n, [&](auto a, auto b) {
return std::get<0>(a) < std::get<0>(b);
});
cin >> p;
for (int i = 1; i <= p; i++) {
cin >> std::get<1>(b[i]) >> std::get<2>(b[i]) >> std::get<3>(b[i]);
std::get<0>(b[i]) = i;
}
std::sort(b + 1, b + 1 + p, [&](auto a, auto b) {
return std::get<1>(a) < std::get<1>(b);
});
f[0] = std::numeric_limits<int>::max();
for (int i = 1, j = 1; i <= p; i++) {
while (std::get<0>(a[j]) <= std::get<1>(b[i]) && j <= n) {
for (int k = 100000; k >= std::get<2>(a[j]); k--) {
f[k] = std::max(f[k],
std::min(f[k - std::get<2>(a[j])],
std::get<1>(a[j])));
}
j++;
}
if (f[std::get<2>(b[i])] > std::get<1>(b[i]) + std::get<3>(b[i])) {
ans[std::get<0>(b[i])] = true;
}
}
for (int i = 1; i <= p; i++) {
cout << (ans[i] ? "TAK" : "NIE") << endl;
}
return 0;
}

BIN
BZOJ/2794/data/1.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/2794/data/1.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/2794/data/10.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/2794/data/10.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/2794/data/11.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/2794/data/11.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/2794/data/12.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/2794/data/12.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/2794/data/13.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/2794/data/13.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/2794/data/14.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/2794/data/14.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/2794/data/15.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/2794/data/15.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/2794/data/16.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/2794/data/16.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/2794/data/17.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/2794/data/17.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/2794/data/2.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/2794/data/2.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/2794/data/3.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/2794/data/3.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/2794/data/4.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/2794/data/4.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/2794/data/5.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/2794/data/5.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/2794/data/6.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/2794/data/6.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/2794/data/7.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/2794/data/7.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/2794/data/8.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/2794/data/8.out (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/2794/data/9.in (Stored with Git LFS) Normal file

Binary file not shown.

BIN
BZOJ/2794/data/9.out (Stored with Git LFS) Normal file

Binary file not shown.