# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
881890 | deadeye0 | Financial Report (JOI21_financial) | C++17 | 167 ms | 54020 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define fi first
#define si second
#define ar array
#define pb push_back
typedef pair<int,int> pi;
typedef tuple<int,int,int> ti;
typedef vector<int> vi;
template<typename T> bool chmin(T &a, T b){return (b < a) ? a = b, 1 : 0;}
template<typename T> bool chmax(T &a, T b){return (b > a) ? a = b, 1 : 0;}
void debug_out() {cerr<<endl;}
template <typename Head, typename... Tail>
void debug_out(Head _H, Tail... _T) {cerr<<" "<<to_string(_H);debug_out(_T...);}
#define debug(...) cerr<<"["<<#__VA_ARGS__<<"]:",debug_out(__VA_ARGS__)
const int N = 300010;
int n, d, ans;
int a[N], dp[N];
map<pi, int> active;
struct node {
node *l, *r;
int val, s, m, e, lazyadd;
bool upd;
node(int _s, int _e): s(_s), e(_e), m((_s+_e)/2), val(0), lazyadd(0), upd(false), l(NULL), r(NULL) {
if (s != e) l = new node(s, m), r = new node(m+1, e);
}
int value() {
if (upd) {
val = lazyadd;
upd = false;
if (s == e) return val;
l->lazyadd = lazyadd;
r->lazyadd = lazyadd;
r->upd = true, l->upd = true;
}
return val;
}
void set(int x, int y, int v) {
if (s == x && e == y) lazyadd = v, upd = true;
else {
if (x > m) r->set(x, y, v);
else if (y <= m) l->set(x, y, v);
else l->set(x, m, v), r->set(m+1, y, v);
val = max(l->value(), r->value());
}
}
int query(int x, int y) {
value();
if (s == x && e == y) return value();
if (x > m) return r->query(x, y);
if (y <= m) return l->query(x, y);
return max(l->query(x, m),r->query(m+1, y));
}
} *st;
int main() {
ios_base::sync_with_stdio(0);
cin.tie(0);cout.tie(0);
cin.exceptions(ios::badbit|ios::failbit);
cin >> n >> d;
vector<int> temp(n);
for (int i = 0; i < n; ++i) {
cin >> a[i];
temp[i] = a[i];
}
sort(temp.begin(), temp.end());
temp.resize(unique(temp.begin(), temp.end()) - temp.begin());
for (int i = 0; i < n; ++i) {
a[i] = lower_bound(temp.begin(), temp.end(), a[i]) - temp.begin();
dp[a[i]] = 1;
}
st = new node(0, n);
for (int i = 0; i < n; ++i) {
if (i - d - 1 >= 0) {
--active[{a[i - d - 1], dp[i - d - 1]}];
if (active[{a[i - d - 1], dp[i - d - 1]}] == 0) {
st->set(a[i - d - 1], a[i - d - 1], 0);
}
}
dp[i] = st->query(0, max(0, a[i] - 1)) + 1;
if (st->query(a[i], a[i]) < dp[i]) {
st->set(a[i], a[i], dp[i]);
}
++active[{a[i], dp[i]}];
chmax(ans, dp[i]);
}
cout << ans;
return 0;
}
컴파일 시 표준 에러 (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... |