Submission #150348

#TimeUsernameProblemLanguageResultExecution timeMemory
150348HSNU (#200)HicCup (FXCUP4_hiccup)C++17
0 / 100
5 ms384 KiB
#include<bits/stdc++.h> #include "hiccup.h" using namespace std; bool chk(string s) { if (s[0] == '!') return false; for (int i = 1; i < (int)s.size(); i++) if (s[i] == '!' && s[i - 1] == 'H') return false; stack<char> stk; for (int i = 0; i < (int)s.size(); i++) if (s[i] == '!') continue; else if (stk.empty()) stk.push(s[i]); else if (stk.top() == 'H' && s[i] == 'C') stk.pop(); else stk.push(s[i]); return stk.empty(); } int HicCup(string S) { long long N = S.size(); if (!chk(S)) return -1; long long ans = N; stack<long long> stk; string s = "H" + S + "C"; for (int i = 0; i < (int)s.size(); i++) { if (s[i] == 'H') stk.push(-1); else if (s[i] == 'C') { long long ttl = 0, cnt = 0; while (stk.top() != -1) ttl += stk.top(), cnt++, stk.pop(); stk.pop(); if (cnt) ans = min(ans, ttl / cnt); } else { int cnt = 0; while (s[i] == '!') cnt++, i++; i--; stk.push(cnt); } } return (int)ans; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...