码迷,mamicode.com
首页 > 其他好文 > 详细

模拟专题

时间:2019-03-09 01:03:21      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:name   length   ORC   lan   space   stdin   string   模拟   htm   

https://vjudge.net/contest/270198

突然想试试这个有毒的东西。


A - HTML

第一次做模拟,先试试。

1.<br>规定为:换行。

2.<hr>规定为:假如现在不是新行,则换行。然后输出一个80字符的分隔线,最后换行。

3.空格/换行规定为:空格。

4.每行不得超过80个字符,一个单词不能断开。

5.最后一行要换行。

感觉有歧义,因为没说假如最后一行本身是空行还要不要换行?那就先当他要换。

 

AC了,还是挺简单的。

技术图片
//#include<bits/stdc++.h>
#include<string>
#include<iostream>
using namespace std;

string hr;

string s;
string cur;

//bool newline=1;

int main(){
    for(int i=0;i<80;i++)
        hr+=-;

#ifdef Yinku
    freopen("Codeforces.in","r",stdin);
    freopen("Codeforces.out","w",stdout);
#endif // Yinku

    while(cin>>s){
        if(s=="<br>"){
            cout<<cur<<endl;
            cur="";
        }
        else if(s=="<hr>"){
            if(cur!=""){
                cout<<cur<<endl;
                cur="";
            }
            cout<<hr<<endl;
        }
        else{
            if(cur!=""){
                if(cur.length()+1+s.length()<=80){
                    s=" "+s;
                    cur+=s;
                }
                else{
                    cout<<cur<<endl;
                    cur=s;
                }
            }
            else{
                cur+=s;
            }
        }
    }
    cout<<cur<<endl;
}
View Code

 

模拟专题

标签:name   length   ORC   lan   space   stdin   string   模拟   htm   

原文地址:https://www.cnblogs.com/Yinku/p/10498901.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!