이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "sequence.h"
#include <bits/stdc++.h>
#include<bits/extc++.h>
using namespace std;
using namespace __gnu_pbds;
tree<int,null_type,less_equal<int>,rb_tree_tag,tree_order_statistics_node_update>stt;
map<int,int>mp;
int sequence(int N, std::vector<int> A) {
int ans=0;
vector<int>A2=A;
if(N<=2000){
for(int i=0;i<N;i++){
mp.clear();
stt.clear();
for(int j=i;j<N;j++){
stt.insert(A[j]);
mp[A[j]]++;
int a=*stt.find_by_order((j-i)/2),b=*stt.find_by_order((j-i+1)/2);
ans=max({ans,mp[a],mp[b]});
}
}
return ans;
}
sort(A2.begin(),A2.end());
int dec=N;
int C=A2[N-1>>1];
for(int i=1;i<N;i++){
if(A[i]<A[i-1]){
dec=i;
break;
}
}
map<int,int>mp1,mp2;
for(int i=0;i<dec;i++)
mp1[A[i]]++;
for(int i=dec;i<N;i++)
mp2[A[i]]++;
for(auto [i,j]:mp1)
ans=max(ans,j);
for(auto [i,j]:mp2)
ans=max(ans,j);
for(int i=0;i<N;i++) if(A[i]>=C)
ans=max(ans,mp1[A[i]]+mp2[A[i]]);
return ans;
}
컴파일 시 표준 에러 (stderr) 메시지
sequence.cpp: In function 'int sequence(int, std::vector<int>)':
sequence.cpp:27:15: warning: suggest parentheses around '-' inside '>>' [-Wparentheses]
27 | int C=A2[N-1>>1];
| ~^~
# | 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... |