# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1081945 | farica | 송신탑 (IOI22_towers) | C++17 | 4035 ms | 5672 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "towers.h"
#include <bits/stdc++.h>
using namespace std;
int n,sub1=1,idx=0;
vector<int> h;
void init(int N, vector<int> H) {
h.clear();
sub1 = 1;
n = N;
for(auto x : H)
h.push_back(x);
int ok=1;
for(int i=0; i<H.size()-1; i++) {
if(ok and H[i] > H[i+1]) {
ok=0;
idx = i;
}
if(!ok and H[i] < H[i+1])
sub1=0;
}
}
int max_towers(int L, int R, int D) {
if(sub1) {
if(idx > L and idx < R and (h[L]+D) <= h[idx] and (h[R]+D) <= h[idx])
return 2;
else
return 1;
}
int ans=1;
set<int>s;
map<int,int>m;
for(int i=L; i<=R; i++) {
auto it = s.lower_bound(h[i]+D);
m[h[i]] = ans;
if(it != s.end()) ans = max(ans, m[*it]+1);
while(!s.empty() && *(s.begin()) < h[i]) s.erase(s.begin());
s.insert(h[i]);
}
return ans;
}
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |