HDU 4245

来源:互联网 发布:php防止ddos 编辑:程序博客网 时间:2024/06/06 05:37

HDU - 4245

A Famous Music Composer
Time Limit: 1000MS Memory Limit: 32768KB 64bit IO Format: %I64d & %I64u

Submit Status

Description

Mr. B is a famous music composer. One of his most famous work was his set of preludes. These 24 pieces span the 24 musical keys (there are musically distinct 12 scale notes, and each may use major or minor tonality). The 12 distinct scale notes are: 


Five of the notes have two alternate names, as is indicated above with equals sign. Thus, there are 17 possible names of scale notes, but only 12 musically distinct notes. When using one of these as the keynote for a musical key, we can further distinguish between major and minor tonalities. This gives 34 possible keys, of which 24 are musically distinct. 

In naming his preludes, Mr. B used all the keys except the following 10, which were named instead by their alternate names: 


Write a program that, given the name of a key, give an alternate name if it has one, or report the key name is unique.
 

Input

Each test case is described by one line having the format "note tonality", where "note" is one of the 17 names for the scale notes given above, and "tonality" is either "major" or "minor" (quotes for clarify).
 

Output

For each case output the required answer, following the format of the sample.
 

Sample Input

Ab minorD# majorG minor
 

Sample Output

Case 1: G# minorCase 2: Eb majorCase 3: UNIQUE
 

这个题意好坑,中间说的小明都是没用的。

#include<bits/stdc++.h>using namespace std;char a[30][10]={{"A# minor"},{"C# minor"},{"D# minor"},{"F# minor"},{"G# minor"},{"Bb minor"},{"Db minor"},{"Eb minor"},{"Gb minor"},{"Ab minor"},{"A# major"},{"C# major"},{"D# major"},{"F# major"},{"G# major"},{"Bb major"},{"Db major"},{"Eb major"},{"Gb major"},{"Ab major"}};char b[30][10]={{"Bb minor"},{"Db minor"},{"Eb minor"},{"Gb minor"},{"Ab minor"},{"A# minor"},{"C# minor"},{"D# minor"},{"F# minor"},{"G# minor"},{"Bb major"},{"Db major"},{"Eb major"},{"Gb major"},{"Ab major"},{"A# major"},{"C# major"},{"D# major"},{"F# major"},{"G# major"}};int main(){    char c[20];    int cas=1;    while(gets(c)){        int k=0;        printf("Case %d: ",cas++);        for(int i=0;i<20;i++)        if(strcmp(a[i],c)==0){            printf("%s\n",b[i]);k=1;break;        }        if(k==0) printf("UNIQUE\n");    }    return 0;}


0 0
原创粉丝点击