# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
982100 | vjudge1 | 서열 (APIO23_sequence) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
using namespace std;
using namespace __gnu_pbds;
typedef tree<int, null_type, less_equal<int>, rb_tree_tag, tree_order_statistics_node_update> ordered_mset;
int sequence(int n, vector <int> a){
//unos y tres
int current = 0, sup = 0, dos = 0;
for(int i=0; i<n; i++){
if(a[i] == 1){
if(current+1>=0) {
current++;
sup++;
}
else {
current=1;
sup = 1;
}
}
else current--;
ans = max(sup, ans);
}
sup = current = 0;
for(int i=0; i<n; i++){
if(a[i] == 3){
if(current+1>=0) {
current++;
sup++;
}
else {
current=1;
sup = 1;
}
}
else current--;
ans = max(sup, ans);
}
for(int i=0; i<n; i++)
if(a[i] == 2) dos++;
return max(dos, ans);
}