# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|
149099 | | ----MIT합격선---- (#200) | HicCup (FXCUP4_hiccup) | C++17 | | 23 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"
#include <utility>
#include <stack>
using namespace std;
typedef pair<char, int> pci;
bool check(const string& S, int x){
stack<char> T;
int n = S.size();
for(int i=0; i<n; i++){
if(S[i]=='H') T.push('(');
else{
if(T.empty()) return false;
if(T.top()=='(') T.pop();
}
}
return T.empty();
/*
stack<pci> T;
bool series = false;
for(int i=0, st=0; i<n; i++){
if(S[i]=='H'){
st = 1;
}
if(S[i]=='C'){
st = 2;
}
if(S[i]=='!'){
if(st>0 && st!=2) return false;
st = (st>0 ? -1 : st-1);
}
T.push({S[i], st});
if(st<=-x){
for(int j=0; j<x+2; j++) T.pop();
st = (T.empty() ? 0 : T.top().second);
nonempty = true;
}
}
*/
return false;
}
int HicCup(std::string S) {
int n = S.size();
int s = 0, e = 1000000;
return check(S, 0) ? 0 : -1;
while(s<e){
int mid = (s+e+1)/2;
if(check(S, mid)) s = mid;
else e = mid-1;
}
return check(S, s) ? s : -1;
}
Compilation message (stderr)
hiccup.cpp: In function 'int HicCup(std::__cxx11::string)':
hiccup.cpp:49:6: warning: unused variable 'n' [-Wunused-variable]
int n = S.size();
^
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |