# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
985207 | CrazyBotBoy | 서열 (APIO23_sequence) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "sequence.h"
#include <vector>
#include <unordered_map>
int sequence(int N, std::vector<int> A) {
// Create a map to store count of each element in the sequence
std::unordered_map<int, int> count;
for (int num : A) {
count[num]++;
}
int max_median_count = 0;
// Iterate through all subarrays
for (int l = 0; l < N; ++l) {
int current_median_count = 0;
for (int r = l; r < N; ++r) {
// Update count for the current element in the subarray
count[A[r]]--;
// Check if the current element is a potential median
int potential_median = A[r];
if (count[potential_median] >= (r - l + 1) / 2 && count[potential_median] <= (r - l + 2) / 2) {
// Update current_median_count if the element can be a median
current_median_count = std::max(current_median_count, count[potential_median]);
}
max_median_count = std::max(max_median_count, current_median_count);
}
// Reset count for the elements processed in the current subarray
for (int i = l; i <= r; ++i) {
count[A[i]]++;
}
}
return max_median_count;
}