Linux下的换行符问题

P1320 压缩技术(续集版)

_Life_ @ 2019-01-28 16:20:05

WA的:

#include<cmath>
#include<cstdio>
using namespace std;
int str[40001],n,sum,num='0';
int main()
{
    for(int i=0,x;x=(str[i]=getchar());i++)
    {
        if(x=='\n')
            i--;
        if(x==EOF)
        {
            n=i+1;
            break;
        }
    }
    printf("%d",(int)sqrt(n));
    for(int i=0;i<n;i++)
        if(num==str[i])
            sum++;
        else
        {
            printf(" %d",sum);
            num=str[i];
            sum=1;
        }
}

AC的:

#include<cmath>
#include<cstdio>
using namespace std;
int str[40001],n,sum,num='0';
int main()
{
    for(int i=0,x;x=(str[i]=getchar());i++)
    {
        if(x=='\n'||x=='\r')
            i--;
        if(x==EOF)
        {
            n=i+1;
            break;
        }
    }
    printf("%d",(int)sqrt(n));
    for(int i=0;i<n;i++)
        if(num==str[i])
            sum++;
        else
        {
            printf(" %d",sum);
            num=str[i];
            sum=1;
        }
}

两份代码的区别在于第九行的if(x=='\n'||x=='\r')if(x=='\n')

awa


by Hexarhy @ 2019-01-28 16:21:08

@自来也 这样不就好了吗?为什么要那样判?

#include<iostream>
#include<cstdio>
#include<string>
using namespace std;
int ans;
string st,x;
bool key=false,f=false;
char q;
int main()
{
    while(cin>>x)
     {
       st.append(x);
       if(!f)
       {
        cout<<x.size()<<' ';
        f=true;
       }
     }
    int len=st.size(),i;
    for(i=0,q='0';i<=len;i++)
        if(st[i]==q)
         ans++;
        else
        {
            q=st[i];
            cout<<ans<<' '; 
            ans=1;
        }
    return 0;
}

by tоurist @ 2019-01-28 16:26:20

@HyyypRtf06 同志你走错场了,他问为什么没问怎么写。


|