Problem Description
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.
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.
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
Author
分析:此题关键是输入和比较,由于步骤比较多,故采用多个子函数实现。
代码:
#include<stdio.h>
#include<string.h>
#define maxn 2000
void f1( char a[]);
void f2(char a[]);
int f3(char a[],char b[]);
int main(){
int n,m;
scanf("%d",&n);
while(n--)
{
char s1[maxn]={0},s2[maxn]={0};
f1(s1),f1(s2);
m=f3(s1,s2);
switch(m)
{
case 1:
printf("Accepted\n");break;
case 2:
printf("Presentation Error\n");break;
case 3:
printf("Wrong Answer\n");break;
}
}
return 0;
}
void f1(char a[])
{
char s[maxn];
while(scanf("%s",s),strcmp(s,"START"));
while(gets(s),strcmp(s,"END"))
{
if(s[0]!='\0')
strcat(a,s);
else strcat(a,"\n");
}
}
int f3(char a[],char b[])
{
if(!strcmp(a,b))
return 1;
f2(a),f2(b);
if(!strcmp(a,b))
return 2;
return 3;
}
void f2(char a[])
{
int k=0,i;
char s[maxn];
for(i=0;a[i]!='\0';i++)
{
if(a[i]==' '||a[i]=='\n'||a[i]=='\t')
continue;
s[k++]=a[i];
}
s[k++]='\0';
strcpy(a,s);
}