제출 #149344

#제출 시각아이디문제언어결과실행 시간메모리
149344팀명못정해서15시간째고민중인팀 (#200)HicCup (FXCUP4_hiccup)C++17
24 / 100
323 ms7492 KiB
#include "hiccup.h"
#include<bits/stdc++.h>
using namespace std;

int HicCup(std::string S) {
	int N = S.size();
	stack<int> st;
	bool chk=true,r=false;
	for(auto i:S){
        if(i=='H') st.push(1);
        else if(i=='C'){
            if(!st.empty()&&st.top()) st.pop(),r=true;
            else chk=false;
        }
        else if(!r) chk=false;
	}
	if(!st.empty()) chk=false;
	if(!chk) return -1;
	else{
        int l=0,r=1000000,Max=0;
        while(l<=r){
            int mid=(l+r)/2;
            stack<pair<int,int>> s;
            for(auto i:S){
                if(i=='H') s.push({1,0});
                else if(i=='C') s.pop(),s.push({2,0});
                else{
                    if(!s.empty()&&s.top().second==mid) s.pop();
                    if(!s.empty()){
                        int c=s.top().second; s.pop();
                        s.push({2,c+1});
                    }
                    if(!s.empty()&&s.top().second==mid) s.pop();
                }
            }
            while(!s.empty()&&s.top().second==mid) s.pop();
            if(s.empty()) l=mid+1,Max=max(Max,mid);
            else r=mid-1;
        }
        return Max;
	}
}

컴파일 시 표준 에러 (stderr) 메시지

hiccup.cpp: In function 'int HicCup(std::__cxx11::string)':
hiccup.cpp:6:6: warning: unused variable 'N' [-Wunused-variable]
  int N = S.size();
      ^
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...