이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "sequence.h"
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int, int> pii;
#define fi first
#define se second
#define mp make_pair
const int N = (int)5e5 + 10;
int cnt[N];
int sequence(int n, vector<int> a) {
int ans = 0;
for(int i = 0 ; i < n; i ++) {
vector<int> me;
for(int j = i ; j < n; j ++) {
cnt[a[j]] ++ ;
me.push_back(a[j]);
sort(me.begin(), me.end());
if(me.size() % 2 == 0){
ans = max(ans, cnt[me[me.size() / 2]]);
ans = max(ans, cnt[me[me.size() / 2 - 1]]);
}
else{
ans = max(ans, cnt[me[me.size() / 2]]);
}
}
for(auto x : me) cnt[x] = 0;
}
return ans;
}
# | 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... |