zoukankan      html  css  js  c++  java
  • hdu 4782 Beautiful Soupz

               模拟。其实这题就是题目比较长而已。。。读完题目就差不多了。tag直接读就可以了,题目说了不用修改。然后整个题目就是让求text部分,严格按空格分开。注意每行前面空格个数。

    #include<algorithm>
    #include<iostream>
    #include<cstdio>
    #include<cstring>
    #include<string>
    #include<vector>
    #include<queue>
    #include<cmath>
    #include<map>
    #include<set>
    #define REP(i, n) for(int i=0; i<n; i++)
    #define FF(i, a, b) for(int i=a; i<b; i++)
    #define FD(i, a, b) for(int i=a; i>=b; i--)
    #define CLR(a, b) memset(a, b, sizeof(a))
    #define PB push_back
    #define LL long long
    using namespace std;
    
    const int N = 1000;
    char ch[N], c;
    vector<string> ans;
    char stop[10] = "</html>";
    
    int main()
    {
        //freopen("input.txt", "r", stdin);
        int t, cas = 1;
        scanf("%d", &t);
        while(t --)
        {
            int cnt = 0;
            ans.clear();
            c = getchar();
            while(true)
            {
                while(c == ' ' || c == '
    ' || c == '	') c = getchar();
                if(c == '<')
                {
                    ch[cnt ++] = '<';
                    while(c != '>')
                    {
                        c = getchar();
                        ch[cnt ++] = c;
                    }
                    ch[cnt] = '';
                    ans.push_back(ch);
                    cnt = 0;
                    if(!strcmp(ch, stop))
                    {
                        break;
                    }
                    c = getchar();
                }
                else
                {
                    while(c != ' ' && c != '
    ' && c != '<' && c != '	')
                    {
                        ch[cnt ++] = c;
                        c = getchar();
                    }
                    ch[cnt] = '';
                    cnt = 0;
                    ans.push_back(ch);
                }
            }
            cnt = 0;
            bool flag = false;
            printf("Case #%d:
    ", cas ++);
            REP(i, ans.size())
            {
                if(ans[i][0] == '<')
                {
                    flag = false;
                    if(ans[i][1] != '/')
                    {
    
                        REP(j, cnt) putchar(' ');
                        cout << ans[i] << endl;
                        int len = ans[i].size();
                        if(ans[i][len - 2] != '/') cnt ++;
                        else continue;
                        ch[0] = '<';
                        ch[1] = '/';
                        FF(j, 1, len)
                        {
                            if(ans[i][j] == ' ')
                            {
                                ch[j + 1] = '>';
                                ch[j + 2] = '';
                                break;
                            }
                            ch[j + 1] = ans[i][j];
                        }
                        ch[len + 1] = '';
                    }
                    else
                    {
                        cnt --;
                        REP(j, cnt) putchar(' ');
                        cout << ans[i] << endl;
                    }
                }
                else
                {
                    if(!flag)
                    {
                        REP(j, cnt) putchar(' ');
                        cout << ans[i];
                        flag = true;
                    }
                    else cout << " " << ans[i];
                    if(ans[i + 1][0] == '<') puts("");
                }
            }
        }
    }
    


  • 相关阅读:
    (17)打鸡儿教你Vue.js
    (16)打鸡儿教你Vue.js
    (15)打鸡儿教你Vue.js
    (14)打鸡儿教你Vue.js
    (13)打鸡儿教你Vue.js
    Webpack 入门教程
    ios textfield如何设置,只能输入1.0-9.9内的数字,并实现时时监测效果
    安卓edittext实现输入数字限制条件的效果
    js动态设置根元素的rem方案
    Fresco使用之OOM问题记录
  • 原文地址:https://www.cnblogs.com/riasky/p/3429130.html
Copyright © 2011-2022 走看看