赞
踩
- /*
- 【字符串,逻辑分析】
- 给定一个队列,但是这个队列比较特殊,可以从头部添加数据,也可以从尾部添加数据,但是只能从头部删除数据。
- 输入一个数字n,会依次添加数字1~n (也就是添加n次)。
- 但是在添加数据的过程中,也会删除数据,要求删除必须按照1~n按照顺序进行删除,所以在删除时,可以根据需要调整队列中数字的顺序以满足删除条件。
- 输入描述:
- 第一行一个数据N,表示数据的范围。
- 接下来的2N行是添加和删除语句。
- 其中: head add x表示从头部添加元素x,tail add x表示从尾部添加元素x,remove表示删除元素。
- 输出描述:
- 输出一个数字,表示最小的调整顺序次数。
- 示例:
- 5
- head add 1
- tail add 2
- remove
- head add 3
- tail add 4
- head add 5
- remove
- remove
- remove
- remove
- 输出:
- 1
- 说明:
- 第1步:[1]
- 第2步:[1,2]
- 第3步:头部删除1,无需调整,还剩[2]
- 第4步:[3,2]
- 第5步:[3,2,4]
- 第6步:[5,3,2,4]
- 第7步:头部删除2,调整顺序再删除,还剩[3,4,5]
- 第8步:头部删除3,无需调整,还剩[4,5]
- 第9步:头部删除4,无需调整,还剩[5]
- 第10步:头部删除5,无需调整
- 只需要调整1次
- */
-
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- #include <stdbool.h>
-
- #define MIN(a, b) ((a) < (b)) ? (a) : (b)
- #define MAX(a, b) ((a) > (b)) ? (a) : (b)
-
-
- int main () {
-
- int n;
- scanf("%d", &n);
- getchar();
-
- int times = 0;//调整顺序次数
- int size = 0;//队列内数字个数
- bool isSorted = true;//开始时为有序
- for (int i = 0; i < n * 2 ; i++) {//要循环10次
-
- char input_str[1000];
- fgets(input_str, 1000, stdin);
- char* sub_str[100];
- char* token = strtok(input_str, " ");
- int count = 0;
- while (token != NULL) {
- sub_str[count] = token;
- count++;
- token = strtok(NULL, " ");
- }
-
- if(count == 3){//即输入的是head add/tail add语句
- if(size != 0){
- //size = 0时不破坏顺序
- //size != 0时head破坏,tail不破坏
- if(strcmp(sub_str[0], "head") == 0 ){//strcmp相等返回0
- isSorted = false;
- }
- }
- size ++;//不管head还是tail都要size++
- }
-
- if(count == 1){//输入的是remove语句
- size--;
- if(isSorted == false){//顺序破坏了就要调整并计数
- times++;
- isSorted = true;
- }
- }
-
- }
- printf("%d",times);
-
- return 0;
-
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。