zjfc1076 online judge 对多行字符串输入做处理

摘要:
str[0]=“\0”;“\n”);int len=strlen(s);tmp[j++]=s[i];}tmp[j]=“\0”;b) ==0)printf(“已接受\n”);

题目描述

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('\t'), or enters('\n'), 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.

输入描述

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.

输出描述

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

样例输入

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

样例输出

Presentation Error
Presentation Error
Wrong Answer
Presentation Error
zjfc1076 online judge 对多行字符串输入做处理第1张zjfc1076 online judge 对多行字符串输入做处理第2张Code
#include<stdio.h>
#include
<string.h>
char a[5005],b[5005],tmp[5005];
int t;
void input(char *str)
{
    getchar();
    gets(tmp);
    str[
0]='\0';
    
while(gets(tmp)&&strcmp(tmp,"END")){
        
if(strlen(tmp)==0)
            strcat(str,
"\n");
        
else
            strcat(str,tmp);
    }
}
void mdo(char *s)
{
    
int i,j;
    
int len=strlen(s);
    
for(i=0,j=0;i<len;i++){
        
if(s[i]==' '||s[i]=='\t'||s[i]=='\n')
            
continue;
        tmp[j
++]=s[i];
    }
    tmp[j]
='\0';
    strcpy(s,tmp);
}
int process()
{
    mdo(a);mdo(b);
    
if(strcmp(a,b)==0)
        
return 1;
    
return 0;
}
int main()
{
    scanf(
"%d",&t);
    
while(t--){
        input(a);
        input(b);
        
if(strcmp(a,b)==0)
            printf(
"Accepted\n");
        
else if(process())
            printf(
"Presentation Error\n");
        
else
            printf(
"Wrong Answer\n");
    }
}

免责声明:文章转载自《zjfc1076 online judge 对多行字符串输入做处理》仅用于学习参考。如对内容有疑问,请及时联系本站处理。

上篇Asp.Net 之 基本控件FileUpload上传控件Ubuntu使用笔记下篇

宿迁高防,2C2G15M,22元/月;香港BGP,2C5G5M,25元/月 雨云优惠码:MjYwNzM=

相关文章

图论:二分图判定

我其实只是想练一练二分图判定的,但是翻到了一个这么个题。。 双栈排序早有耳闻,非常欣赏当年的出题水平,堪称经典 这个题AC的人一定是个天才 废话不多说,双栈排序的思路我就不介绍了,没有那个水平,直接来说说怎么二分图染色 bool color(int x,int cl) { c[x]=cl; for(int tmp=g[x];tmp;tmp...

MYSQL,触发器,实现两个表共用ID不重复

前后台没有分开,为了区分前后台用户,所以分表,但是ID不能重复,因为关联了权限表. 这里实现后台用户表使用奇数ID 前台用户表使用偶数ID MYSQL 没有sequence  SET @@auto_increment_offsetSET @@auto_increment_increment 也只能在当前查询有效.所以这也是权宜之计  SET FOREIGN...

Python 操作 MySQL 的5种方式

不管你是做数据分析,还是网络爬虫,Web 开发、亦或是机器学习,你都离不开要和数据库打交道,而 MySQL 又是最流行的一种数据库,这篇文章介绍 Python 操作 MySQL 的5种方式,你可以在实际开发过程中根据实际情况合理选择。 1、MySQLdb MySQLdb又叫MySQL-python ,是 Python 连接 MySQL 最流行的一个驱动,很...

Shell命令合集

Ccat zdd 浏览文件zdd的内容cat zdd1 zdd2 浏览多个文件的内容cat -n zdd浏览文件zdd的内容并显示行号cd 回到起始目录,也即刚登陆到系统的目录,cd后面无参数cd / 回到根目录cd .. 返回上一级目录 cd - 返回到最近使用的目录Ddf -kh 查看磁盘信息 du -sh foldername 查看文件夹大小,-h表...

冗余代码都走开——前端模块打包利器 Rollup.js 入门

之前翻译过一篇文章,介绍了通过 ES2015 的解构赋值语法引入模块,可以让打包工具(browserify)最终编译出来的代码量最小化。 殊不知在 webpack 1.X 版本是无法利用该特性来避免引入冗余模块代码的,导致打出来的 bundle 文件大小难免略有臃肿。 今天则向大家介绍一个当红炸子鸡——Rollup.js,通过它可以让你的 bundle 最...

Django Restful Framework

你在浏览器中输入了一个地址的时候发生了什么事情? 1.HOST 2.DNS 3.HTTP/HTTPS协议 发送一个协议 4.进入了实现了WSGI协议的服务器(wsgiref uwsgi(C语言实现,多线程,多进程,PHP,TOMCAT)) 5.请求进入Django 6. 前后端不分离:中间件->路由分发->对应的视图函数->找到模板,渲...