이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define rep(i, n) for(int i = 0; i < (int)(n); i ++)
#define rep1(i, n) for(int i = 1; i <= (int)(n); i ++)
#define MP make_pair
using namespace std;
typedef long long LL;
typedef pair<int, int> PII;
int n, d, a[300005], rt[300005], sl[300005], sr[300005], dp[300005];
PII ord[300005];
struct segt
{
int dat[1200005];
void modify(int id, int v, int cv = 1, int cl = 1, int cr = n)
{
if(cl == cr) {
dat[cv] = v; return;
}
int mid = (cl + cr) >> 1;
if(id <= mid) modify(id, v, cv << 1, cl, mid);
else modify(id, v, cv << 1 | 1, mid + 1, cr);
dat[cv] = max(dat[cv << 1], dat[cv << 1 | 1]);
}
int query(int l, int r, int cv = 1, int cl = 1, int cr = n)
{
if(cl > cr || cl > r || cr < l) return 0;
if(l <= cl && cr <= r) return dat[cv];
int mid = (cl + cr) >> 1;
return max(query(l, r, cv << 1, cl, mid), query(l, r, cv << 1 | 1, mid + 1, cr));
}
} tre;
int root(int x)
{
return rt[x] == x ? x : rt[x] = root(rt[x]);
}
void unite(int x, int y)
{
x = root(x);
y = root(y);
if(x == y) return;
sl[x] = min(sl[x], sl[y]);
sr[x] = max(sr[x], sr[y]);
rt[y] = x;
}
int main()
{
scanf("%d%d", &n, &d);
rep1(i, n) scanf("%d", &a[i]);
rep1(i, n) {
rt[i] = i;
sl[i] = max(1, i - d);
sr[i] = min(n, i + d);
}
rep1(i, n) ord[i] = MP(a[i], ~i);
sort(ord + 1, ord + n + 1);
set<int> ids;
rep1(i, n) {
int id = ~ord[i].second;
{
set<int>::iterator it = ids.lower_bound(id);
if(it != ids.end() && *it <= id + d) unite(id, *it);
}
{
set<int>::iterator it = ids.lower_bound(id);
if(it != ids.begin() && id - d <= *prev(it)) unite(id, *prev(it));
}
ids.insert(id);
dp[id] = tre.query(sl[root(id)], id) + 1;
tre.modify(id, dp[id]);
}
printf("%d\n", tre.query(1, n));
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
Main.cpp: In function 'int main()':
Main.cpp:51:7: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
51 | scanf("%d%d", &n, &d);
| ~~~~~^~~~~~~~~~~~~~~~
Main.cpp:52:18: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
52 | rep1(i, n) scanf("%d", &a[i]);
| ~~~~~^~~~~~~~~~~~~
# | 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... |