# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
961732 | 0npata | Financial Report (JOI21_financial) | C++17 | 256 ms | 32664 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
#define vec vector
#define snd second
#define fst first
#define pb push_back
int main() {
ios_base::sync_with_stdio(false);
cin.tie(0);
int n, d;
cin >> n >> d;
vec<int> a(n);
for(int i = 0; i<n; i++) {
cin >> a[i];
}
map<int, int> bst;
multiset<int> lstd;
for(int i = 0; i<n; i++) {
if(lstd.size() == d) {
int mn = *lstd.begin();
while(bst.begin() != bst.end()) {
if((*bst.begin()).fst < mn) {
bst.erase(bst.begin());
}
else {
break;
}
}
}
auto nxt = bst.lower_bound(a[i]);
int res;
if(nxt == bst.begin()) {
res = 1;
}
else {
auto prev = nxt;
prev--;
res = (*prev).snd + 1;
}
vec<int> te(0);
while(nxt != bst.end()) {
if((*nxt).snd <= res) {
te.pb((*nxt).fst);
}
else {
break;
}
nxt++;
}
for(int e : te) {
bst.erase(e);
}
if(bst[a[i]] < res) {
bst[a[i]] = res;
}
lstd.insert(a[i]);
if(i-d >= 0) {
lstd.erase(lstd.find(a[i-d]));
}
}
int ans = (*bst.rbegin()).second;
cout << ans << '\n';
}
컴파일 시 표준 에러 (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... |