A Famous Music Compose

来源:互联网 发布:php 模拟http请求 编辑:程序博客网 时间:2024/05/18 03:37

A Famous Music Composer

时间限制:1000 ms  |  内存限制:65535 KB
难度:1
描述
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: 
 A    A#=Bb B       C      C#=DbD      D#=Eb E      F       F#=Gb G      G#=Ab

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: 
 Ab minor A# majorA# minor C# major Db minor D# major D# minorGb major Gb minor G# major 
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. 
输入
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).
输出
For each case output the required answer, following the format of the sample.
样例输入
Ab minorD# majorG minor
样例输出
Case 1: G# minorCase 2: Eb major

Case 3: UNIQUE


题目大意:第二个表是可输入的内容,若输入的内容有别名就输出它的别名,没有,就输出UNIUE;

解题思路:枚举法~注意输出格式,Case 1: 冒号后面有空格!



#include<stdio.h>#include<string.h>#include<algorithm>using namespace std;char s1[30],s2[30];int main(){int cas=0;while(scanf("%s%s",s1,s2)!=EOF){printf("Case %d: ",++cas);//冒号后有空格!!! if(!strcmp(s1,"A#"))  printf("%s %s\n","Bb",s2);else if(!strcmp(s1,"Bb"))  printf("%s %s\n","A#",s2);else if(!strcmp(s1,"C#"))  printf("%s %s\n","Db",s2);else if(!strcmp(s1,"Db"))  printf("%s %s\n","C#",s2);else if(!strcmp(s1,"D#"))  printf("%s %s\n","Eb",s2);else if(!strcmp(s1,"Eb"))  printf("%s %s\n","D#",s2);else if(!strcmp(s1,"F#"))  printf("%s %s\n","Gb",s2);else if(!strcmp(s1,"Gb"))  printf("%s %s\n","F#",s2);else if(!strcmp(s1,"G#"))  printf("%s %s\n","Ab",s2);else if(!strcmp(s1,"Ab"))  printf("%s %s\n","G#",s2);  else  printf("UNIQUE\n");}    return 0;}


0 0
原创粉丝点击