이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#include <ext/pb_ds/assoc_container.hpp>
using namespace __gnu_pbds;
#define ordered_set tree<pair<int,int>, null_type,less<>, rb_tree_tag,tree_order_statistics_node_update>
#define int long long
int32_t sequence(int32_t N, std::vector<int32_t> A) {
int32_t ans = 0;
for(int i=0;i<N;i++){
int k = 0;
map<int,int32_t> freq;
ordered_set window;
for(int j=i;j<N;j++){
k++;freq[A[j]]++;window.insert({A[j],j});
ans=max(freq[(*window.find_by_order(k/2)).first],ans);
if(k%2==0) {
ans=max(freq[(*window.find_by_order((k/2)-1)).first],ans);
}
}
}
return ans;
}
//int32_t main() {
// int32_t N;
// assert(1 == scanf("%d", &N));
//
// std::vector<int32_t> A(N);
// for (int32_t i = 0; i < N; ++i) {
// assert(1 == scanf("%d", &A[i]));
// }
//
// int32_t result = sequence(N, A);
// printf("%d\n", result);
// return 0;
//}
# | 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... |