Codeforces#420 C. Okabe and Boxes
6618 단어 Codeforces데이터 구조
Okabe and Super Hacker Daru are stacking and removing boxes. There are n boxes numbered from 1 to n. Initially there are no boxes on the stack.
Okabe, being a control freak, gives Daru 2*n* commands: n of which are to add a box to the top of the stack, and n of which are to remove a box from the top of the stack and throw it in the trash. Okabe wants Daru to throw away the boxes in the order from 1 to n. Of course, this means that it might be impossible for Daru to perform some of Okabe’s remove commands, because the required box is not on the top of the stack.
That’s why Daru can decide to wait until Okabe looks away and then reorder the boxes in the stack in any way he wants. He can do it at any point of time between Okabe’s commands, but he can’t add or remove boxes while he does it.
Tell Daru the minimum number of times he needs to reorder the boxes so that he can successfully complete all of Okabe’s commands. It is guaranteed that every box is added before it is required to be removed.
Input
The first line of input contains the integer n (1 ≤ n ≤ 3·105) — the number of boxes.
Each of the next 2*n* lines of input starts with a string “add” or “remove”. If the line starts with the “add”, an integer x (1 ≤ x ≤ n) follows, indicating that Daru should add the box with number x to the top of the stack.
It is guaranteed that exactly n lines contain “add” operations, all the boxes added are distinct, and n lines contain “remove” operations. It is also guaranteed that a box is always added before it is required to be removed.
Output
Print the minimum number of times Daru needs to reorder the boxes to successfully complete all of Okabe’s commands.
Examples
input
3
add 1
remove
add 2
add 3
remove
remove
output
1
input
7
add 3
add 2
add 1
remove
add 4
remove
remove
remove
add 6
add 7
add 5
remove
remove
remove
output
2
제목:
모두 창고 의 조작 을 알 고 있 죠? 지금 한 창고 에 물건 을 넣 는 것 이 있 습 니 다. 표 시 는 1 ~ n 이 고 놓 는 순서 가 정 해 지지 않 았 습 니 다. 하지만 그 가 창고 에서 나 가 려 고 할 때.
1 ~ n 에서 온 것 입 니 다. 가끔 은 스 택 지붕 이 필요 한 숫자 가 아 닌 것 이 분명 합 니 다. 그러면 이 를 통 해 전체 스 택 을 조정 할 수 있 습 니 다. 지금 은 몇 번 을 조정 해 야 하 는 지 물 어 볼 수 있 습 니 다.
생각:
두 가지 상황 으로 나 뉜 다.
주의: 이 규칙 은 한눈 에 알 아 볼 수 있 는 것 이 아니 라 천천히 모 의 하고 규칙 을 찾 는 것 이 필요 합 니 다.
#include
#include
#include
#include
using namespace std;
const int maxn = 300005;
int n;
char str[10];
int s[maxn],pos;
int main()
{
//freopen("in.txt","r",stdin);
scanf("%d",&n);
pos = 0;
int out = 1;
int ans = 0;
for(int i = 1;i <= n*2; i++) {
scanf("%s",str);
if(strcmp(str,"add") == 0) {
int temp;
scanf("%d",&temp);
s[pos++] = temp;
}
else {
if(pos != 0 && s[pos-1] == out) {
pos--;
}
else {
//sort(s,s+pos,cmp);
if(pos != 0)
ans ++;
pos = 0;
}
out++;
}
}
printf("%d
",ans);
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Codeforces 1287C Garland제목 링크:Codeforces 1287C Garland 사고방식: 우리기dp[i][j][0]와 dp[i][j][1]는 각각 i개가 홀수/짝수이고 앞의 i개 안에 j개의 짝수가 있는 상황에서 i개의 최소 복잡도.첫 번...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.