# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
684144 | Hacv16 | Garage (IOI09_garage) | C++17 | 1 ms | 340 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int MAX = 2e5 + 15;
const int INF = 0x3f3f3f3f;
int n, m, rev, r[MAX], w[MAX], spot[MAX];
set<int> s;
queue<int> q;
int main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cin >> n >> m;
for(int i = 1; i <= n; i++){
cin >> r[i];
s.insert(i);
}
for(int i = 1; i <= m; i++)
cin >> w[i];
for(int i = 1; i <= 2 * m; i++){
int car; cin >> car;
if(car < 0) s.insert(spot[-car]);
else q.push(car);
while(s.size()){
if(q.empty()) break;
int cur = q.front(); q.pop();
int curSpot = *(s.begin());
s.erase(s.begin());
spot[cur] = curSpot;
rev += w[cur] * r[curSpot];
}
}
cout << rev << '\n';
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |