# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
150282 | GucciBelt (#200) | HicCup (FXCUP4_hiccup) | C++17 | 178 ms | 6420 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"
#include <bits/stdc++.h>
using namespace std;
const int N = 1e6+5;
int n;
bool checkFunction(string str, int mid) {
stack<int> stk;
for(int i = 0; i < n; ++i) {
if(str[i] == 'C') stk.emplace(0);
if(str[i] == '!') {
if(stk.empty()) continue;
int v = stk.top(); stk.pop();
if(++v == mid) continue;
stk.emplace(v);
}
}
return stk.empty();
}
int HicCup(string S) {
n = S.size();
int cnt = 0;
bool state = false;
for(int i = 0; i < n; ++i) {
if(S[i] == 'H') cnt++, state = false;
if(S[i] == 'C') if(!~--cnt) return -1; else state = true;
if(S[i] == '!') if(!state) return -1;
}
if(cnt) return -1;
int l = 0, r = S.size();
while(l < r) {
int mid = (l + r + 1) >> 1;
if(checkFunction(S, mid)) l = mid;
else r = mid-1;
}
return l;
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |