K

来源:互联网 发布:js 数组增加键 编辑:程序博客网 时间:2024/04/28 06:55

K - Log Files

 URAL - 2073 

Nikolay has decided to become the best programmer in the world! Now he regularly takes part in various programming contests, attentively listens to problems analysis and upsolves problems. But the point is that he had participated in such a number of contests that got totally confused, which problems had already been solved and which had not. So Nikolay conceived to make a program that could read contests’ logs and build beautiful summary table of the problems. Nikolay is busy participating in a new contest so he has entrusted this task to you!
Input
The first line contains an integer n (1 ≤ n ≤ 100). It‘s the number of contests‘ descriptions. Then descriptions are given. The first line of description consists of from 1 to 30 symbols — Latin letters, digits and spaces — and gives the name of contest. It‘s given that the name doesn‘t begin and doesn’t end with a space. In the second line of description the date of contest in DD.MM.YY format is given. It‘s also given that the date is correct and YY can be from 00 to 99 that means date from 2000 till 2099. In the third line of description there are numbers p and sseparated by space (1 ≤ p ≤ 13, 0 ≤ s ≤ 100). It‘s amount of problems and Nikolay’s submits in the contest. Then s lines are given. These are submits’ descriptions. Description of each submit consists of the problem‘s letter and the judge verdict separated by space. The letter of the problem is the title Latin letter and all problems are numbered by first p letters of English alphabet. The judge verdict can be one of the following: Accepted, Wrong Answer, Runtime Error, Time Limit Exceeded, Memory Limit Exceeded, Compilation Error.
Output
Print the table, which consists of n+1 lines and 3 columns. Each line (except the first) gives the description of the contest. The first column gives the name of the contest, the second column gives the date of the contest (exactly as it was given in the input), the third column gives the description of the problems. Every description of problems is the line of 13 characters, where the i-th character correlate with the i-th problem. If the problem got verdict Accepted at least one time, this character is ’o’. If the problem was submitted at least once but wasn’t accepted, the character is ’x’. If the problem was just given at the contest but wasn’t submitted, the character is ’.’. Otherwise, the character is ’ ’ (space). Contests in the table must be placed in the same order as in input.
Column with the name of the contest consists of 30 symbols (shorter names must be extended by spaces added to the right to make this length). Columns with the date and description of problems consist of 8 and 13 characters accordingly.
The first line of the table gives the names of columns. The boundaries of the table are formatted by ’|’, ’-’ и ’+’ symbols. To get detailed understanding of the output format you can look at the example.
Example
inputoutput
2Codeforces Gamma Round 51229.02.165 4A AcceptedB AcceptedC AcceptedE AcceptedURKOP17.10.1512 11A AcceptedB Wrong AnswerB Time Limit ExceededJ AcceptedB AcceptedJ Time Limit ExceededJ AcceptedF AcceptedE Runtime ErrorH AcceptedE Runtime Error
+------------------------------+--------+-------------+|Contest name                  |Date    |ABCDEFGHIJKLM|+------------------------------+--------+-------------+|Codeforces Gamma Round 512    |29.02.16|ooo.o        |+------------------------------+--------+-------------+|URKOP                         |17.10.15|oo..xo.o.o.. |+------------------------------+--------+-------------+

题目链接:https://cn.vjudge.net/contest/160744#problem/K


大模拟,宇航敲得。

代码:

#include<bits/stdc++.h>using namespace std;char nam[33];char dat[33];int  book[33];int main(){int n;//printf("+------------------------------+--------+-------------+\n");scanf("%d", &n);int i, j;printf("+------------------------------+--------+-------------+\n");printf("|Contest name                  |Date    |ABCDEFGHIJKLM|\n");while(n--){printf("+------------------------------+--------+-------------+\n");scanf("\n");gets(nam);int len=strlen(nam);scanf("%s", dat);int i, j, p, s;char op[33], pr[33];scanf("%d%d", &p, &s);memset(book, 0, sizeof book);scanf("\n");while(s--){   scanf("%s",  pr);   getchar();   gets(op);//   printf("%s +%s\n", pr, op);   if(strcmp(op, "Accepted")==0)book[pr[0]-'A']=1;   else if(book[pr[0]-'A']==0)book[pr[0]-'A']=-1;}printf("|");printf("%s", nam);for(i=len+1; i<=30; i++){    printf(" ");}printf("|");printf("%s|", dat);for(i=0; i<p; i++){if(book[i]==1)printf("o");else if(book[i]==-1)printf("x");else printf(".");}for(; i<13; i++)printf(" ");printf("|\n"); }printf("+------------------------------+--------+-------------+\n");}


0 0
原创粉丝点击