Submission #150327

#TimeUsernameProblemLanguageResultExecution timeMemory
150327HSNU (#200)HicCup (FXCUP4_hiccup)C++17
0 / 100
11 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 ans; }

Compilation message (stderr)

hiccup.cpp: In function 'int HicCup(std::__cxx11::string)':
hiccup.cpp:39:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
     for (int i = 0; i < (int)s.size(); i++)
     ^~~
hiccup.cpp:61:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
  return ans;
  ^~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...