zoukankan      html  css  js  c++  java
  • nyoj25-A Famous Music Composer

    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 minor
    D# major
    G minor
    样例输出
    Case 1: G# minor
    Case 2: Eb major
    Case 3: UNIQUE
     
    #include<stdio.h>  
    #include<string.h>  
    int main()  
    {  
        char a[10],s[10];
        int kase=1;  
        while(scanf("%s %s",a,s)!=EOF)  
        {  
            printf("Case %d: ",kase++);  
            if(!strcmp(a,"A#")) printf("Bb %s
    ",s);  
            else if(!strcmp(a,"Bb")) printf("A# %s
    ",s);  
            else if(!strcmp(a,"C#")) printf("Db %s
    ",s);  
            else if(!strcmp(a,"Db")) printf("C# %s
    ",s);  
            else if(!strcmp(a,"D#")) printf("Eb %s
    ",s);  
            else if(!strcmp(a,"Eb")) printf("D# %s
    ",s);  
            else if(!strcmp(a,"F#")) printf("Gb %s
    ",s);  
            else if(!strcmp(a,"Gb")) printf("F# %s
    ",s);  
            else if(!strcmp(a,"G#")) printf("Ab %s
    ",s);  
            else if(!strcmp(a,"Ab")) printf("G# %s
    ",s);  
            else printf("UNIQUE
    ");      
        }  
        return 0;  
    }          

     
    #include<iostream>
    #include<string>
    using namespace std;
    string trans(string a){
    	string b="";
    	if(a[1]=='#'){
    		b+=char((a[0]-'A'+1)%7+'A');
    		b+='b';
    	}else{
    		b+=char((a[0]-'A'+6)%7+'A');
    		b+='#';
    	}
    	return b;
    }
    int main(){
    	string a,b;
    	for(int t=1; cin>>a>>b; t++){
    		cout<<"Case "<<t<<": ";
    		if(a.length()==1)
    			cout<<"UNIQUE"<<endl;
    		else
    			cout<<trans(a)<<" "<<b<<endl;
    	}
    	return 0;
    }
            

  • 相关阅读:
    [解决方案]sql server复制需要有实际的服务器名称才能连接到服务器
    [解决方案]解决SQL Server管理器无法连接远程数据库的问题
    event.keyCode对照表
    安卓环境搭建
    什么是 MIME Type?
    Gregexpr(可用来判断一个字符串在另一个字符串中出现的位置)
    paste函数(用于字符串的连接等)
    read.csv与write.csv
    JSF使用<p:fileUpload>进行上传图片出现的javax.servlet.ServletException: The request contenttype is not a multipart/formdata错误解决
    组合函数combn
  • 原文地址:https://www.cnblogs.com/aerer/p/9931107.html
Copyright © 2011-2022 走看看