# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
54673 | 2018-07-04T11:59:30 Z | okaybody10 | Garage (IOI09_garage) | C++ | 4 ms | 844 KB |
#include <bits/stdc++.h> typedef long long ll; using namespace std; queue<int> wait; priority_queue<int> parking; int cost[1006],car[10007],weight[10006]; int main() { int N,M; scanf("%d %d",&N,&M); ll ans=0; for(int i=1;i<=N;i++) parking.push(-i); for(int i=1;i<=N;i++) scanf("%d",&cost[i]); for(int i=1;i<=M;i++) scanf("%d",&weight[i]); for(int i=0;i<2*M;i++) { int t; scanf("%d",&t); if(t<0) parking.push(-car[-t]); else { if(parking.size()==0) wait.push(t); else { int v=-parking.top(); parking.pop(); car[t]=v; ans+=weight[t]*cost[v]; } } while(!wait.empty() && !parking.empty()) { int c1=wait.front(); wait.pop(); int c2=-parking.top(); parking.pop(); car[c1]=c2; ans+=cost[c2]*weight[c1]; } } return !printf("%lld",ans); }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 376 KB | Output is correct |
2 | Correct | 3 ms | 376 KB | Output is correct |
3 | Correct | 2 ms | 556 KB | Output is correct |
4 | Correct | 2 ms | 556 KB | Output is correct |
5 | Correct | 2 ms | 580 KB | Output is correct |
6 | Correct | 2 ms | 580 KB | Output is correct |
7 | Correct | 2 ms | 708 KB | Output is correct |
8 | Correct | 2 ms | 708 KB | Output is correct |
9 | Correct | 2 ms | 708 KB | Output is correct |
10 | Correct | 2 ms | 708 KB | Output is correct |
11 | Correct | 2 ms | 708 KB | Output is correct |
12 | Correct | 2 ms | 708 KB | Output is correct |
13 | Correct | 2 ms | 708 KB | Output is correct |
14 | Correct | 3 ms | 708 KB | Output is correct |
15 | Correct | 3 ms | 812 KB | Output is correct |
16 | Correct | 2 ms | 844 KB | Output is correct |
17 | Correct | 4 ms | 844 KB | Output is correct |
18 | Correct | 4 ms | 844 KB | Output is correct |
19 | Correct | 3 ms | 844 KB | Output is correct |
20 | Correct | 4 ms | 844 KB | Output is correct |