# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
150698 | Solo Leveling (#200) | HicCup (FXCUP4_hiccup) | C++17 | 14 ms | 512 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "hiccup.h"
#include <bits/stdc++.h>
using namespace std;
struct item{
int h , c , x;
};
int HicCup(std::string S) {
int N = S.size();
int l = 0 , r = N;
int ansj = -1;
while(l<=r){
int mid = (l);
bool can = true;
stack<item >s;
bool jateve = false;
for(int i = 0 ; i < S.size() ; i ++){
if(S[i] == 'H'){
s.push({0 , 1 , mid});
}
else if(S[i] == 'C'){
jateve = true;
if(s.empty()){
can = false;
break;
}
if(s.top().c == 0){
can = false;
break;
}
s.top().c--;
}
else{
if(s.empty() && !jateve){
can = false;
break;
}
if(!s.empty()){
if(s.top().c == 0)
while(!s.empty() && s.top().c == 0){
if(s.top().x == 0){
s.pop();
}
else{
s.top().x--;
if(s.top().x == 0){
s.pop();
}
break;
}
}
else{
if(!jateve){
can = false;
break;
}
}
}
}
}
while(s.size() && s.top().c == 0 && s.top().x == 0) s.pop();
if(s.size()) can = false;
if(can){
ansj = max(ansj , mid);
}
l++;
}
return ansj;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |