This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "wall.h"
#include <bits/stdc++.h>
using namespace std;
const int inf = 1e9;
void buildWall(int n, int k, int op[], int left[], int right[], int height[], int ans[]){
vector<vector<int>> rig(n + 1), lef(n + 1);
for(int i = 0; i < k; i ++){
if(op[i] == 1) rig[right[i]].push_back(height[i]), lef[left[i]].push_back(height[i]);
}
multiset<int> st;
for(int i = 0; i < n; i ++){
for(auto h : lef[i]){
st.insert(h);
}
ans[i] = (st.empty() ? 0 : *st.rbegin());
for(auto h : rig[i]) st.erase(st.find(h));//, cout << h << endl;;
}
return;
rig.clear(); lef.clear();
for(int i = 0; i < k; i ++){
if(op[i] == 2) rig[right[i]].push_back(height[i]), lef[left[i]].push_back(height[i]);
}
for(int i = 0; i < n; i ++){
for(auto h : lef[i]){
st.insert(h);
}
ans[i] = min(ans[i], (st.empty() ? inf : *st.begin()));
for(auto h : rig[i]) st.erase(st.find(h));
}
}
| # | Verdict | Execution time | Memory | Grader output |
|---|
| Fetching results... |
| # | Verdict | Execution time | Memory | Grader output |
|---|
| Fetching results... |
| # | Verdict | Execution time | Memory | Grader output |
|---|
| Fetching results... |
| # | Verdict | Execution time | Memory | Grader output |
|---|
| Fetching results... |