# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
1016914 |
2024-07-08T15:26:18 Z |
ByeWorld |
Garage (IOI09_garage) |
C++14 |
|
1 ms |
2648 KB |
#include <bits/stdc++.h>
#pragma GCC optimize("O3", "unroll-loops")
#define ll long long
#define int long long
#define pb push_back
#define fi first
#define se second
#define lf (id<<1)
#define rg ((id<<1)|1)
#define md ((l+r)>>1)
#define ld long double
using namespace std;
typedef pair<int,int> pii;
typedef pair<pii, int> ipii;
const int MAXN = 1e5+10;
const int MAXA = 110;
const int INF = 1e18+10;
const int LOG = 19;
const int MOD = 1e9+7;
const int SQRT = 450;
const vector<int> NOL = {};
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
const vector<int> dx = {1, -1, 0, 0};
const vector<int> dy = {0, 0, 1, -1};
void chmx(int &a, int b){ a = max(a, b); }
int n, m;
int x[MAXN], w[MAXN];
int pl[MAXN];
signed main(){
// ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0);
cin >> n >> m;
for(int i=1; i<=n; i++) cin >> x[i];
for(int i=1; i<=m; i++) cin >> w[i];
int ANS = 0;
set <int> s; for(int i=1; i<=n; i++) s.insert(i);
for(int i=1; i<=2*m; i++){
int p; cin >> p;
if(p>0){
int idx = *(s.begin()); s.erase(idx); pl[p] = idx;
ANS += w[p] * x[idx];
} else {
s.insert(pl[-p]);
}
}
cout << ANS << '\n';
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
2392 KB |
Output is correct |
2 |
Incorrect |
0 ms |
2396 KB |
Output isn't correct |
3 |
Correct |
1 ms |
2392 KB |
Output is correct |
4 |
Incorrect |
0 ms |
2496 KB |
Output isn't correct |
5 |
Correct |
0 ms |
2396 KB |
Output is correct |
6 |
Incorrect |
0 ms |
2396 KB |
Output isn't correct |
7 |
Correct |
1 ms |
2396 KB |
Output is correct |
8 |
Incorrect |
1 ms |
2396 KB |
Output isn't correct |
9 |
Correct |
1 ms |
2396 KB |
Output is correct |
10 |
Incorrect |
1 ms |
2396 KB |
Output isn't correct |
11 |
Correct |
1 ms |
2396 KB |
Output is correct |
12 |
Incorrect |
1 ms |
2396 KB |
Output isn't correct |
13 |
Correct |
1 ms |
2648 KB |
Output is correct |
14 |
Incorrect |
1 ms |
2396 KB |
Output isn't correct |
15 |
Correct |
1 ms |
2396 KB |
Output is correct |
16 |
Incorrect |
1 ms |
2396 KB |
Output isn't correct |
17 |
Incorrect |
1 ms |
2532 KB |
Output isn't correct |
18 |
Incorrect |
1 ms |
2396 KB |
Output isn't correct |
19 |
Incorrect |
1 ms |
2396 KB |
Output isn't correct |
20 |
Incorrect |
1 ms |
2396 KB |
Output isn't correct |