Submission #148829

#TimeUsernameProblemLanguageResultExecution timeMemory
148829준표야 함수컵은 캐리해줄거지? (#200)HicCup (FXCUP4_hiccup)C++17
24 / 100
256 ms7164 KiB
#include "hiccup.h" #include <cstdio> #include <algorithm> using namespace std; int st[1000006] = {-1}; int top; bool chk(string &S, int k) { top = 0; for (int i = 0; i < S.size(); i++) { if (S[i] == 'H') { st[++top] = -1; } else if (S[i] == 'C') { st[++top] = -2; } else if (S[i] == '!') { if (st[top] < 0) st[++top] = 1; else st[top]++; if (st[top - 1] == -1) top--; } if (k) while (top > 2 && st[top - 2] == -1 && st[top - 1] == -2 && st[top] >= k) { st[top - 2] = st[top] - k; top -= 2; while (st[top - 1] >= 0) { st[top - 1] += st[top]; top--; } while (st[top] == 0) top--; } else { while (st[top] >= 0) top--; while (top > 1 && st[top - 1] == -1 && st[top] == -2) top -= 2; } } return !top; } int HicCup(std::string S) { int s = 0; for (int i = 0; i < S.size(); i++) { if (S[i] == 'H') s++; else if (S[i] == 'C') s--; if (s < 0) return -1; if (S[i] == '!' && !s) return -1; } int l = -1, r = S.size(); while (l + 1 < r) { int mid = l + r >> 1; if (!chk(S, mid)) r = mid; else l = mid; } return l; } // int main() { // int ret = HicCup("HHCC!HH!CC"); // printf("%d\n", ret); // }

Compilation message (stderr)

hiccup.cpp: In function 'bool chk(std::__cxx11::string&, int)':
hiccup.cpp:12:20: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  for (int i = 0; i < S.size(); i++) {
                  ~~^~~~~~~~~~
hiccup.cpp: In function 'int HicCup(std::__cxx11::string)':
hiccup.cpp:44:20: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  for (int i = 0; i < S.size(); i++) {
                  ~~^~~~~~~~~~
hiccup.cpp:52:15: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
   int mid = l + r >> 1;
             ~~^~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...