# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
544890 | 2022-04-03T05:20:14 Z | wenqi | Hotel (CEOI11_hot) | C++17 | 377 ms | 26512 KB |
// trans rights #include <bits/stdc++.h> using namespace std; using ll = long long; int N, M, O; int V[500069]; vector<pair<int, int>> rooms, customers; int getv(int i) { return i == V[i] ? i : V[i] = getv(V[i]); } int main(int argc, const char *argv[]) { scanf("%d%d%d", &N, &M, &O); for (int i = 0; i < N; i++) { int c, p; scanf("%d%d", &c, &p); rooms.push_back({p, c}); V[i] = i; } V[N] = N; sort(rooms.begin(), rooms.end()); for (int i = 0; i < M; i++) { int v, d; scanf("%d%d", &v, &d); customers.push_back({d, v}); } sort(customers.begin(), customers.end(), [](const pair<int, int>& a, const pair<int, int>& b){ return a.second > b.second; }); ll profit = 0; for (auto &c : customers) { if (O <= 0) break; auto [d, v] = c; int a = 0; int b = N + 1; while (b - a > 1) { int m = (a + b) / 2; if (rooms[m - 1].first >= d) b = m; else a = m; } int room = getv(a); if (room >= N) continue; int potential = v - rooms[room].second; if (potential > 0) { V[room]++; profit += potential; } } printf("%lld\n", profit); return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 212 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 212 KB | Output is correct |
2 | Incorrect | 1 ms | 212 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 212 KB | Output is correct |
2 | Incorrect | 1 ms | 212 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 316 KB | Output is correct |
2 | Incorrect | 1 ms | 212 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 7 ms | 852 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 37 ms | 3048 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 55 ms | 5312 KB | Output is correct |
2 | Incorrect | 38 ms | 3644 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 155 ms | 12208 KB | Output is correct |
2 | Incorrect | 111 ms | 6340 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 362 ms | 23968 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 377 ms | 26512 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |