zoukankan      html  css  js  c++  java
  • PAT Advanced 1061 Dating (20分)

    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

    考察范围,范围一定要缩到最小,以及,格式化必须完全正确

    #include <iostream>
    using namespace std;
    int main() {
        string a, b, c, d;
        cin >> a >> b >> c >> d;
        int i = 0;
        for(;; i++) if(a[i] == b[i] && a[i] >= 'A' && a[i] <= 'G') break;
        switch(a[i]) {
            case 'A': printf("MON "); break;
            case 'B': printf("TUE "); break;
            case 'C': printf("WED "); break;
            case 'D': printf("THU "); break;
            case 'E': printf("FRI "); break;
            case 'F': printf("SAT "); break;
            case 'G': printf("SUN "); break;
        }
        while(++i) if(a[i] == b[i] && ((isdigit(a[i]) || (a[i] >= 'A' && a[i] <= 'N')))) break;
        if(isdigit(a[i])) printf("%02d:", a[i] - '0');
        else printf("%02d:", a[i] - 'A' + 10);
        for(i = 0;; i++) if(c[i] == d[i] && isalpha(c[i])) break;
        printf("%02d", i);
        system("pause");
        return 0;
    }
  • 相关阅读:
    NOTIFYICONDATA结构
    OA系统权限管理设计(转载)
    JQuery打造下拉框联动效果
    MapReduce实现矩阵相乘
    Linux系统下安装phpmyadmin方法
    个人封装的一个Camera类
    从零开始学C++之STL(七):剩下5种算法代码分析与使用示例(remove 、rotate 、sort、lower_bound、accumulate)
    Java实现 蓝桥杯VIP 算法提高 3-1课后习题2
    Java实现 蓝桥杯VIP 算法提高 3-1课后习题2
    Java实现 蓝桥杯VIP 算法提高 3-1课后习题2
  • 原文地址:https://www.cnblogs.com/littlepage/p/12269317.html
Copyright © 2011-2022 走看看