# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
28991 | kdh9949 | 새로운 문제 (POI13_usu) | C++14 | 189 ms | 27728 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
struct Dat{
int *p, b, c;
};
int n, k;
char str[1000010];
stack<Dat> st, nst;
void upd(int i){
st.top().p[st.top().b + st.top().c] = i;
if(str[i] == 'b') st.top().b++;
else st.top().c++;
}
void top(int i){
int *p = new int[k + 1];
st.push({p, 0, 0});
upd(i);
}
void pop(){
nst.push(st.top());
st.pop();
}
int main(){
scanf("%d%d%s", &n, &k, str + 1);
for(int i = 1; i <= n; i++){
if(st.empty()) top(i);
else if(str[i] == 'b'){
if(st.top().b == k) top(i);
else upd(i);
if(st.top().b + st.top().c == k + 1){
pop();
}
}
else{
if(st.top().c == 1) top(i);
else upd(i);
if(st.top().b + st.top().c == k + 1){
pop();
}
}
}
while(!nst.empty()){
for(int i = 0; i <= k; i++) printf("%d ", nst.top().p[i]);
puts("");
nst.pop();
}
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |