이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std ;
const int mx = 1e6 ;
map<int,int> mp ;
vector<int> V ;
struct tree
{
vector<int> t ;
tree(int n)
{
t = vector<int> (4*n + 4 , 0) ;
}
void update(int node , int low , int high , int ind , int val)
{
if(low>ind || high<ind) return ;
if(low==high && low==ind)
{
t[node] = val ;
return ;
}
int mid = (low+high)>>1 , left = node<<1 , right = left|1 ;
update(left,low,mid,ind,val) , update(right,mid+1,high,ind,val) ;
t[node] = max(t[left],t[right]) ;
}
void clean(int node , int low , int high)
{
if(low==high)
{
t[node] = 0 ;
return ;
}
int mid = (low+high)>>1 , left = node<<1 , right = left|1 ;
clean(left,low,mid) , clean(right,mid+1,high) ;
t[node] = 0 ;
}
int query(int node , int low , int high , int l , int r)
{
if(r<low || l>high) return 0 ;
if(l<=low && high<=r) return t[node] ;
int mid = (low+high)>>1 , left = node<<1 , right = left|1 ;
return max(query(left,low,mid,l,r) , query(right,mid+1,high,l,r)) ;
}
};
int main()
{
int n , x , ind = 0 ;
scanf("%d%d",&n,&x) ;
int a[n+1] , ans = 0 , dp[n+2][3] ;
for(int i = 1 ; i <= n ; ++i)
{
scanf("%d",&a[i]) ;
V.push_back(a[i]) ;
V.push_back(a[i] + x - 1) ;
V.push_back(a[i] - x + 1) ;
dp[i][1] = 0 , dp[i][2] = 0 ;
}
sort(V.begin(),V.end()) ;
for(int i : V)
{
if(mp[i]) continue ;
mp[i] = ++ind ;
}
tree pref(mx+5) , suf(mx+5) ;
for(int i = 1 ; i <= n ; ++i)
{
dp[i][1] = pref.query(1,0,mx,1,mp[a[i] + x - 1]) ;
pref.update(1,0,mx,mp[a[i]],pref.query(1,0,mx,1,mp[a[i]] - 1) + 1) ;
}
for(int i = n ; i >= 1 ; --i)
{
dp[i][2] = suf.query(1,0,mx,mp[a[i]-x+1],mx) ;
suf.update(1,0,mx,mp[a[i]],suf.query(1,0,mx,mp[a[i]] + 1,mx) + 1) ;
}
pref.clean(1,0,mx) , suf.clean(1,0,mx) ;
for(int i = 1 ; i <= n ; ++i)
{
ans = max(ans,dp[i][2] + pref.query(1,0,mx,1,mp[a[i]] - 1) + 1) ;
pref.update(1,0,mx,mp[a[i]],pref.query(1,0,mx,1,mp[a[i]] - 1) + 1) ;
}
for(int i = n ; i >= 1 ; --i)
{
ans = max(ans,dp[i][1] + suf.query(1,0,mx,mp[a[i]] + 1,mx) + 1) ;
suf.update(1,0,mx,mp[a[i]],suf.query(1,0,mx,mp[a[i]] + 1,mx) + 1) ;
}
printf("%d\n",ans) ;
return 0 ;
}
컴파일 시 표준 에러 (stderr) 메시지
glo.cpp: In function 'int main()':
glo.cpp:56:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
56 | scanf("%d%d",&n,&x) ;
| ~~~~~^~~~~~~~~~~~~~
glo.cpp:60:14: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
60 | 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... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |