이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define pb push_back
#define all(v) ((v).begin(), (v).end())
#define sortv(v) sort(all(v))
#define sz(v) ((int)(v).size())
#define uniqv(v) (v).erase(unique(all(v)), (v).end())
#define umax(a, b) (a)=max((a), (b))
#define umin(a, b) (a)=min((a), (b))
#define FOR(i,a,b) for(int i = (a); i <= (b); i++)
#define rep(i,n) FOR(i,1,n)
#define rep0(i,n) FOR(i,0,(int)(n)-1)
#define FI first
#define SE second
#define INF 2000000000
#define INFLL 1000000000000000000LL
using namespace std;
typedef long long ll;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
int N;
string str;
ll ans = 0;
ll J = 0, I = 0;
ll ans2;
int main(){
cin>>N;
cin>>str;
ll A=0, B=0;
for(int i=0; i<N; i++){
if(str[i]=='J'){
J++;
A++;
}else if(str[i]=='O'){
B+=A;
}else{
I++;
ans2 += B;
}
}
ans = max(ans, B);
A = B = 0;
ll i=0, j=0;
for(int t=N-1; t>=0; t--){
if(str[t]=='I'){
i++;
A++;
}else if(str[t]=='O'){
B+=A;
}else{
j++;
}
ans = max(ans, i * (J-j));
}
ans = max(ans, B);
cout<<ans + ans2;
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... |