1061. Dating (20)

来源:互联网 发布:温岭淘宝培训 编辑:程序博客网 时间:2024/04/29 16:52
Sherlock Holmes received a note with some strange strings: "Let's date! 3485djDkxh4hhGE 2984akDfkkkkggEdsb s&hgsfdk d&Hyscvnm". It took him only a minute to figure out that those strange strings are actually referring to the coded time "Thursday 14:04" -- since the first common capital English letter (case sensitive) shared by the first two strings is the 4th capital letter 'D', representing the 4th day in a week; the second common character is the 5th capital letter 'E', representing the 14th hour (hence the hours from 0 to 23 in a day are represented by the numbers from 0 to 9 and the capital letters from A to N, respectively); and the English letter shared by the last two strings is 's' at the 4th position, representing the 4th minute. Now given two pairs of strings, you are supposed to help Sherlock decode the dating time.

Input Specification:

Each input file contains one test case. Each case gives 4 non-empty strings of no more than 60 characters without white space in 4 lines.

Output Specification:

For each test case, print the decoded time in one line, in the format "DAY HH:MM", where "DAY" is a 3-character abbreviation for the days in a week -- that is, "MON" for Monday, "TUE" for Tuesday, "WED" for Wednesday, "THU" for Thursday, "FRI" for Friday, "SAT" for Saturday, and "SUN" for Sunday. It is guaranteed that the result is unique for each case.

Sample Input:
3485djDkxh4hhGE
2984akDfkkkkggEdsb
s&hgsfdk
d&Hyscvnm
Sample Output:

THU 14:04


IDEA

简单的题,没啥技巧


CODE

#include<iostream>#include<cstring>#include<fstream>using namespace std;int main(){#ifndef ONLINE_JUDGEfreopen("input.txt","r",stdin);#endifstring str1,str2,str3,str4;cin>>str1>>str2>>str3>>str4;int i=0; while(str1[i]!='\0'&&str2[i]!='\0'){ if(str1[i]==str2[i]&&(str1[i]>='A'&&str1[i]<='G')){ switch(str1[i]) {case 'A':cout<<"MON ";break;case 'B':cout<<"TUE ";break;case 'C':cout<<"WED ";break;case 'D':cout<<"THU ";break;case 'E':cout<<"FRI ";break;case 'F':cout<<"SAT ";break;case 'G':cout<<"SUN ";break;}break; }i++;}i++;while(str1[i]!='\0'&&str2[i]!='\0'){if(str1[i]==str2[i]&&((str1[i]>='A'&&str1[i]<='N')||(str1[i]>='0'&&str1[i]<='9'))){if(str1[i]>='0'&&str1[i]<='9'){cout<<"0"<<str1[i]<<":";}else if(str1[i]>='A'&&str1[i]<='N'){int x=str1[i]-'A'+10;                  cout<<x/10<<x%10<<":"; }break;}i++;}int j=0;while(str3[j]!='\0'&&str4[j]!='\0'){//str3[j]!='\0'&&str4[i]!='\0'if(str3[j]==str4[j]&&((str3[j]>='A'&&str3[j]<='Z')||(str3[j]>='a'&&str3[j]<='z'))){cout<<j/10<<j%10;break; }j++;}#ifndef ONLINE_JUDGEfclose(stdin);#endifreturn 0;} 


0 0