• Seinfeld(栈模拟)


    Seinfeld

    Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 1624    Accepted Submission(s): 792

    Problem Description
    I’m out of stories. For years I’ve been writing stories, some rather silly, just to make simple problems look difficult and complex problems look easy. But, alas, not for this one. You’re given a non empty string made in its entirety from opening and closing braces. Your task is to find the minimum number of “operations” needed to make the string stable. The definition for being stable is as follows: 1. An empty string is stable. 2. If S is stable, then {S} is also stable. 3. If S and T are both stable, then ST (the concatenation of the two) is also stable. All of these strings are stable: {}, {}{}, and {{}{}}; But none of these: }{, {{}{, nor {}{. The only operation allowed on the string is to replace an opening brace with a closing brace, or visa-versa.
     
    Input
    Your program will be tested on one or more data sets. Each data set is described on a single line. The line is a non-empty string of opening and closing braces and nothing else. No string has more than 2000 braces. All sequences are of even length. The last line of the input is made of one or more ’-’ (minus signs.)
     
    Output
    For each test case, print the following line: k. N Where k is the test case number (starting at one,) and N is the minimum number of operations needed to convert the given string into a balanced one. Note: There is a blank space before N.
     
    Sample Input
    }{ {}{}{} {{{} ---
     
    Sample Output
    1. 2 2. 0 3. 1
     
     
    题解:

    在读入的过程中,把相匹配的删除,最后会存在下面三种形态:

    1.    }}}...

    2.    {{{...

    3.    }}}...{{{...

    对于每种形态就很容易求了。

    题解:

     1 #include<iostream>
     2 #include<cstdio>
     3 #include<cstring>
     4 #include<algorithm>
     5 #include<cmath>
     6 #include<vector>
     7 using namespace std;
     8 const int INF=0x3f3f3f3f;
     9 #define mem(x,y) memset(x,y,sizeof(x))
    10 #define SI(x) scanf("%d",&x)
    11 #define PI(x) printf("%d",x)
    12 #define SD(x,y) scanf("%lf%lf",&x,&y)
    13 #define P_ printf(" ")
    14 const int MAXN=2010;
    15 int dp[MAXN];
    16 char q[MAXN];
    17 typedef long long LL;
    18 int main(){
    19     char s[MAXN];
    20     int kase=0;
    21     while(scanf("%s",s),s[0]!='-'){
    22         int top=0;
    23         for(int i=0;s[i];i++){
    24             if(top==0||s[i]=='{')q[++top]=s[i];
    25             else if(q[top]=='{'&&s[i]=='}')--top;
    26             else q[++top]=s[i];
    27         }
    28     //    for(int i=1;i<=top;i++)printf("%c",q[i]);puts("");
    29         int ans;
    30         if(top==0||q[top]=='}')ans=top/2;
    31         else if(q[1]=='{'&&q[top]=='{')ans=top/2;
    32         else{
    33             int ans1=0,ans2=0,k=1;
    34             while(q[k]=='}')k++;
    35             ans1=k-1;
    36             ans2=top-k+1;
    37             ans=(ans1+1)/2+(ans2+1)/2;
    38         }
    39         ++kase;
    40         printf("%d. %d
    ",kase,ans);
    41     }
    42     return 0;
    43 }
  • 相关阅读:
    vue 文件分段上传
    深度clone
    js 导出excel
    js 校验
    设计模式原则
    多态
    数据库sql
    Redis快速入门
    C#中使用Redis学习二 在.NET4.5中使用redis hash操作
    在c#中使用servicestackredis操作redis
  • 原文地址:https://www.cnblogs.com/handsomecui/p/5203434.html
Copyright © 2020-2023  润新知