zoukankan      html  css  js  c++  java
  • 杭电 1037 Online Judge 字符处理

    Online Judge

    Ignatius is building an Online Judge, now he has worked out all the problems except the Judge System. The system has to read data from correct output file and user’s result file, then the system compare the two files. If the two files are absolutly same, then the Judge System return “Accepted”, else if the only differences between the two files are spaces(’ ‘), tabs(‘ ’), or enters(‘ ’), the Judge System should return “Presentation Error”, else the system will return “Wrong Answer”.

    Given the data of correct output file and the data of user’s result file, your task is to determine which result the Judge System will return.

    Input
    The input contains several test cases. The first line of the input is a single integer T which is the number of test cases. T test cases follow. Each test case has two parts, the data of correct output file and the data of the user’s result file. Both of them are starts with a single line contains a string “START” and end with a single line contains a string “END”, these two strings are not the data. In other words, the data is between the two strings. The data will at most 5000 characters.

    Output
    For each test cases, you should output the the result Judge System should return.

    Sample Input
    4
    START
    1 + 2 = 3
    END
    START
    1+2=3
    END
    START
    1 + 2 = 3
    END
    START
    1 + 2 = 3

    END
    START
    1 + 2 = 3
    END
    START
    1 + 2 = 4
    END
    START
    1 + 2 = 3
    END
    START
    1 + 2 = 3
    END

    Sample Output
    Presentation Error
    Presentation Error
    Wrong Answer
    Presentation Error

    #include<iostream>
    #include<cstdio>
    #include<cstring>
    using namespace std;
    int main()
    {
        int l;
        cin>>l;
        getchar();
        while(l--)
        {
            char a[10010],b[10010],c[10010],d[10010],e[10010];
            gets(a);
            memset(b,0,sizeof(b));
            while(gets(a))
            {
                if(strcmp(a,"END")==0) break;
                if(strcmp(a,"END")!=0) strcat(b,a);//链接输入的 字符
                strcat(b,"
    ");//每个句末 都有一个换行
            }
            memset(c,0,sizeof(c));
            gets(a);
            while(gets(a))
            {
                if(strcmp(a,"END")==0) break;
                if(strcmp(a,"END")!=0) strcat(c,a);
                strcat(c,"
    ");
            }
            if(strcmp(b,c)==0)
            {
                printf("Accepted
    ");
                continue;
            }
            int l=strlen(b);
            int h=strlen(c);
            memset(d,0,sizeof(d));
            memset(e,0,sizeof(e));
            int n=0,m=0,i;
            for(i=0;i<l;i++)
            {
                if(b[i]!=' '&&b[i]!='
    '&&b[i]!='	')//保留有效的 字符 去除空格 回车
                    d[n++]=b[i];
            }
            d[n]='';
            for(i=0;i<h;i++)
            {
                if(c[i]!=' '&&c[i]!='
    '&&c[i]!='	')
                    e[m++]=c[i];
            }
            e[m]='';
            if(strcmp(e,d)==0)
                printf("Presentation Error
    ");
            else
                printf("Wrong Answer
    ");
        }
        return 0;
    }
    
  • 相关阅读:
    NHibernate 入门必看——NHibernate Made Simple
    ASP.NET 的多线程
    asp.net 禁止用户二次登录(转)
    marquee标记用法及在asp.net中的应用(转)
    解决Visual Studio 2005显示中文乱码(zhuan)
    ms sql 触发器( 转)
    Asp.net 页面导航的几种方法与比较
    ASP.NET1.1(VB):DataGrid中"加入序号列"和"截取定长字符串追加'...
    解决“Internet Explorer 无法打开 Internet站点已终止操作”问题(转)
    ASP.NET 2.0的页面指令集(转)
  • 原文地址:https://www.cnblogs.com/nanfenggu/p/7900189.html
Copyright © 2011-2022 走看看