# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
149347 | bitKOIn (#200) | HicCup (FXCUP4_hiccup) | C++17 | 145 ms | 3328 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "hiccup.h"
int HicCup(std::string S) {
int N = S.size();
//if(N)
int a=0,b=0,c=0,d=0,n=0,m=1000000;
for(int t=0;t<N;t++)
{
if(S[t]=='H') a++;
if(S[t]=='C') b++;
if(S[t]=='!') c++;
if(c&&a==0) return -1;
if(a<b) return -1;
}
if(a!=b||a==0) return -1;
//m=c/a;
for(;n<m;)
{
int h=(n+m)/2+1;
a=b=0;
long long c=0;
for(int t=0;t<N;t++)
{
if(S[t]=='H') a++;
if(S[t]=='C')
{
a--,c+=h;
}
if(S[t]=='!')
{
if(c)
{
c--;
}
//else return -1;
}
}
if(!c)
n=h;
else m=h-1;
qwe:;
}
return n;
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |