# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
532409 | Alex_tz307 | Garage (IOI09_garage) | C++17 | 1 ms | 332 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
void testCase() {
int n, m;
cin >> n >> m;
vector<int> a(n + 1);
for (int i = 1; i <= n; ++i) {
cin >> a[i];
}
vector<int> w(m + 1);
for (int i = 1; i <= m; ++i) {
cin >> w[i];
}
priority_queue<int, vector<int>, greater<int>> pq;
for (int i = 1; i <= n; ++i) {
pq.emplace(i);
}
queue<int> q;
vector<int> slot(m + 1);
vector<bool> del(m + 1);
int ans = 0;
for (int i = 1; i <= 2 * m; ++i) {
int x;
cin >> x;
if (x > 0) {
if (pq.empty()) {
q.emplace(x);
} else {
slot[x] = pq.top();
pq.pop();
ans += w[x] * a[slot[x]];
}
} else {
x = -x;
if (slot[x] == 0) {
del[x] = true;
} else {
pq.emplace(slot[x]);
while (!q.empty() && !pq.empty()) {
while (!q.empty() && del[q.front()]) {
q.pop();
}
if (!q.empty()) {
slot[q.front()] = pq.top();
pq.pop();
ans += w[q.front()] * a[slot[q.front()]];
q.pop();
}
}
}
}
}
cout << ans << '\n';
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
int tests = 1;
for (int tc = 0; tc < tests; ++tc) {
testCase();
}
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |