# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
784237 | GordonRemzi007 | 송신탑 (IOI22_towers) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int n;
int a[1e5+10];
bool srt(pair<int,int> a, pair<int,int> b) {
return a.first < b.first;
}
void init(int size, vector<int> h) {
n = size;
for(int i = 0; i < n; i++) a[i] = h[i];
}
int max_towers(int l, int r, int d) {
int res = 0, f, s;
bool ok;
vector<bool> used(n, false);
vector<pair<int,int>> b(r-l+1);
for(int i = l; i <= r; i++) b[i] = {a[i], i};
sort(b.begin(), b.end(), srt);
for(int i = 0; i < b.size(); i++) {
f = b[i].second, s = b[i].second;
ok = true;
//find closest left and right a[i] >= a[b[i].second]+d
for(; f >= l; f--) {
if(used[f]) {
ok = false;
break;
}
if(a[f] >= a[b[i].second]+d) break;
if(f == l) {
f = b[i].second;
break;
}
}
for(; s <= r; s++) {
if(used[s]) {
ok = false;
break;
}
if(a[s] >= a[b[i].second]+d) break;
if(s == r) {
s = b[i].second;
break;
}
}
if(ok) {
used[b[i].second] = true;
res++;
}
}
return res;
}