Codeforces#420 C. Okabe and Boxes

C. Okabe and Boxes
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; }

    좋은 웹페이지 즐겨찾기