# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
982220 | vjudge1 | 서열 (APIO23_sequence) | C++17 | 2065 ms | 54612 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "sequence.h"
#include<bits/extc++.h>
#include<bits/stdc++.h>
using namespace std;
using namespace __gnu_pbds;
tree<int,null_type,less_equal<>,rb_tree_tag,tree_order_statistics_node_update> st;
multiset<int>st2;
int sequence(int N, std::vector<int> A) {
int ans=0;
for(int i=0;i<N;i++){
st.clear();
st2.clear();
for(int j=i;j<N;j++) {
st.insert(A[j]);
st2.insert(A[j]);
int A=*st.find_by_order(j-i>>1);
int B=*st.find_by_order(j-i+1>>1);
ans=max(ans,(int)st2.count(A));
ans=max(ans,(int)st2.count(B));
}
}
return ans;
}
컴파일 시 표준 에러 (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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |