Where Amazing Happens
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others)
Total Submission(s): 0 Accepted Submission(s): 0Problem DescriptionAs the premier men's professional basketball league in the world, the National Basketball Association (NBA) has witnessed many superstars, legendary teams and precious friendships.Here is a list of every season’s champion from the league's inception in 1946 to 2015.
Season Champion
2015-16 Cleveland Cavaliers
2014-15 Golden State Warriors
2013-14 San Antonio Spurs
2012-13 Miami Heat
2011-12 Miami Heat
2010-11 Dallas Mavericks
2009-10 L.A. Lakers
2008-09 L.A. Lakers
2007-08 Boston Celtics
2006-07 San Antonio Spurs
2005-06 Miami Heat
2004-05 San Antonio Spurs
2003-04 Detroit Pistons
2002-03 San Antonio Spurs
2001-02 L.A. Lakers
2000-01 L.A. Lakers
1999-00 L.A. Lakers
1998-99 San Antonio Spurs
1997-98 Chicago Bulls
1996-97 Chicago Bulls
1995-96 Chicago Bulls
1994-95 Houston Rockets
1993-94 Houston Rockets
1992-93 Chicago Bulls
1991-92 Chicago Bulls
1990-91 Chicago Bulls
1989-90 Detroit Pistons
1988-89 Detroit Pistons
1987-88 L.A. Lakers
1986-87 L.A. Lakers
1985-86 Boston Celtics
1984-85 L.A. Lakers
1983-84 Boston Celtics
1982-83 Philadelphia 76ers
1981-82 L.A. Lakers
1980-81 Boston Celtics
1979-80 L.A. Lakers
1978-79 Seattle Sonics
1977-78 Washington Bullets
1976-77 Portland Trail Blazers
1975-76 Boston Celtics
1974-75 Golden State Warriors
1973-74 Boston Celtics
1972-73 New York Knicks
1971-72 L.A. Lakers
1970-71 Milwaukee Bucks
1969-70 New York Knicks
1968-69 Boston Celtics
1967-68 Boston Celtics
1966-67 Philadelphia 76ers
1965-66 Boston Celtics
1964-65 Boston Celtics
1963-64 Boston Celtics
1962-63 Boston Celtics
1961-62 Boston Celtics
1960-61 Boston Celtics
1959-60 Boston Celtics
1958-59 Boston Celtics
1957-58 St. Louis Hawks
1956-57 Boston Celtics
1955-56 Philadelphia Warriors
1954-55 Syracuse Nats
1953-54 Minneapolis Lakers
1952-53 Minneapolis Lakers
1951-52 Minneapolis Lakers
1950-51 Rochester Royals
1949-50 Minneapolis Lakers
1948-49 Minneapolis Lakers
1947-48 Baltimore Bullets
1946-47 Philadelphia Warriors(quoted from http://www.nba.com/history/nba-season-recaps/)
Given the team name, it won’t be difficult for you to count how many times this team(with exactly the same name) has made amazing happen.
InputThe first line gives the number of test cases. Each case contains one string S representing the team to be queried.
T<=30.S consists of English letters, digits, punctuations and spaces. And 1<=length(S)<=30.OutputFor each test case, output one line containing "Case #x: y", where x is the test case number (starting from 1) and y is the times this team has won the championship according to the list above.Sample Input2
Cleveland Cavaliers
Oklahoma City ThunderSample OutputCase #1: 1
Case #2: 0
题意:
给定这些年以来得过总冠军的队伍名称,求给你的队伍共取得了多少次冠军。
map水一发啊,注意输入的格式。
附AC代码:
#include<iostream>
#include<cstring>
#include<cmath>
#include<map>
using namespace std; int main(){
int n;
cin>>n;
map<string,int> m;
m["Cleveland Cavaliers"]+=;
m["Golden State Warriors"]+=;
m["San Antonio Spurs"]+=;
m["Miami Heat"]+=;
m["Miami Heat"]+=;
m["Dallas Mavericks"]+=;
m["L.A. Lakers"]+=;
m["L.A. Lakers"]+=;
m["Boston Celtics"]+=;
m["San Antonio Spurs"]+=;
m["Miami Heat"]+=;
m["San Antonio Spurs"]+=;
m["Detroit Pistons"]+=;
m["San Antonio Spurs"]+=;
m["L.A. Lakers"]+=;
m["L.A. Lakers"]+=;
m["L.A. Lakers"]+=;
m["San Antonio Spurs"]+=;
m["Chicago Bulls"]+=;
m["Chicago Bulls"]+=;
m["Chicago Bulls"]+=;
m["Houston Rockets"]+=;
m["Houston Rockets"]+=;
m["Chicago Bulls"]+=;
m["Chicago Bulls"]+=;
m["Chicago Bulls"]+=;
m["Detroit Pistons"]+=;
m["L.A. Lakers"]+=;
m["L.A. Lakers"]+=;
m["Boston Celtics"]+=;
m["L.A. Lakers"]+=;
m["Boston Celtics"]+=;
m["Philadelphia 76ers"]+=;
m["L.A. Lakers"]+=;
m["Boston Celtics"]+=;
m["L.A. Lakers"]+=;
m["Seattle Sonics"]+=;
m["Washington Bullets"]+=;
m["Portland Trail Blazers"]+=;
m["Boston Celtics"]+=;
m["Golden State Warriors"]+=;
m["Boston Celtics"]+=;
m["New York Knicks"]+=;
m["L.A. Lakers"]+=;
m["Milwaukee Bucks"]+=;
m["New York Knicks"]+=;
m["Boston Celtics"]+=;
m["Boston Celtics"]+=;
m["Philadelphia 76ers"]+=;
m["Boston Celtics"]+=;
m["St. Louis Hawks"]+=;
m["Boston Celtics"]+=;
m["Philadelphia Warriors"]+=;
m["Syracuse Nats"]+=;
m["Minneapolis Lakers"]+=;
m["Rochester Royals"]+=;
m["Minneapolis Lakers"]+=;
m["Minneapolis Lakers"]+=;
m["Baltimore Bullets"]+=;
m["Philadelphia Warriors"]+=; int k=;
getchar();//!
for(int i=;i<n;i++){char s[];
gets(s);//!读入空格
cout<<"Case #"<<k++<<": ";
cout<<m[s]<<endl;
}
return ;
}
string测了一发也可以:
#include<iostream>
#include<cstring>
#include<cmath>
#include<map>
using namespace std; int main(){
int n;
cin>>n;
map<string,int> m;
m["Cleveland Cavaliers"]+=;
m["Golden State Warriors"]+=;
m["San Antonio Spurs"]+=;
m["Miami Heat"]+=;
m["Miami Heat"]+=;
m["Dallas Mavericks"]+=;
m["L.A. Lakers"]+=;
m["L.A. Lakers"]+=;
m["Boston Celtics"]+=;
m["San Antonio Spurs"]+=;
m["Miami Heat"]+=;
m["San Antonio Spurs"]+=;
m["Detroit Pistons"]+=;
m["San Antonio Spurs"]+=;
m["L.A. Lakers"]+=;
m["L.A. Lakers"]+=;
m["L.A. Lakers"]+=;
m["San Antonio Spurs"]+=;
m["Chicago Bulls"]+=;
m["Chicago Bulls"]+=;
m["Chicago Bulls"]+=;
m["Houston Rockets"]+=;
m["Houston Rockets"]+=;
m["Chicago Bulls"]+=;
m["Chicago Bulls"]+=;
m["Chicago Bulls"]+=;
m["Detroit Pistons"]+=;
m["L.A. Lakers"]+=;
m["L.A. Lakers"]+=;
m["Boston Celtics"]+=;
m["L.A. Lakers"]+=;
m["Boston Celtics"]+=;
m["Philadelphia 76ers"]+=;
m["L.A. Lakers"]+=;
m["Boston Celtics"]+=;
m["L.A. Lakers"]+=;
m["Seattle Sonics"]+=;
m["Washington Bullets"]+=;
m["Portland Trail Blazers"]+=;
m["Boston Celtics"]+=;
m["Golden State Warriors"]+=;
m["Boston Celtics"]+=;
m["New York Knicks"]+=;
m["L.A. Lakers"]+=;
m["Milwaukee Bucks"]+=;
m["New York Knicks"]+=;
m["Boston Celtics"]+=;
m["Boston Celtics"]+=;
m["Philadelphia 76ers"]+=;
m["Boston Celtics"]+=;
m["St. Louis Hawks"]+=;
m["Boston Celtics"]+=;
m["Philadelphia Warriors"]+=;
m["Syracuse Nats"]+=;
m["Minneapolis Lakers"]+=;
m["Rochester Royals"]+=;
m["Minneapolis Lakers"]+=;
m["Minneapolis Lakers"]+=;
m["Baltimore Bullets"]+=;
m["Philadelphia Warriors"]+=; int k=;
getchar();
for(int i=;i<n;i++){string s;
getline(cin,s);
cout<<"Case #"<<k++<<": ";
cout<<m[s]<<endl;
}
return ;
}
Where Amazing Happens的更多相关文章
- RxJS + Redux + React = Amazing!(译一)
今天,我将Youtube上的<RxJS + Redux + React = Amazing!>翻译(+机译)了下来,以供国内的同学学习,英文听力好的同学可以直接看原版视频: https:/ ...
- RxJS + Redux + React = Amazing!(译二)
今天,我将Youtube上的<RxJS + Redux + React = Amazing!>的后半部分翻译(+机译)了下来,以供国内的同学学习,英文听力好的同学可以直接看原版视频: ht ...
- The Amazing ProgressBar Control(转)
好久没写博客了,今天就先转一篇,随后可以再写些~~~ 直接把原文粘过来,就不再进行翻译和个人说明了,因为效果很COOL~ The Amazing ProgressBar Control A progr ...
- 【jquery】一款不错的音频播放器——Amazing Audio Player
前段时间分享了一款视频播放器,点击这里.今天介绍一款不错的音频播放器——Amazing Audio Player. 介绍: Amazing Audio Player 是一个使用很方便的 Windows ...
- hdu 5774 Where Amazing Happens
Where Amazing Happens 题意: 让你输出各个队名的出现次数. 题解: 打表题,好坑,相同的没有放在一起,需要认真找,否则容易错. 代码: #include<iostream& ...
- Lesson 3: The Amazing New Mobile Web
Lesson 3: The Amazing New Mobile Web Article 1: This is Responsive by Brad Frost 各种响应式网站设计的资源. Artic ...
- hdu 5774 Where Amazing Happens 水题
Where Amazing Happens 题目连接: http://acm.hdu.edu.cn/showproblem.php?pid=5774 Description As the premie ...
- English trip V1 - 5.That's Amazing! 棒极了! Teacher:Patrick Key: can or can't
In this lesson you will learn to describe what people can do. 在本课中,您将学习如何描述人们可以做什么. STARTE drive a c ...
- [翻译] The Amazing Audio Engine
The Amazing Audio Engine https://github.com/TheAmazingAudioEngine/TheAmazingAudioEngine The Amazing ...
- 13 Amazing Component Sets Driving Success In Delphi Berlin On Android And IOS
There are quite a few Firemonkey component sets available for Delphi Berlin which can get you ahead ...
随机推荐
- js -- 监听窗口的大小变化
- 利用背景流量数据(contexual flow data) 识别TLS加密恶意流量
识别出加密流量中潜藏的安全威胁具有很大挑战,现已存在一些检测方法利用数据流的元数据来进行检测,包括包长度和到达间隔时间等.来自思科的研究人员扩展现有的检测方法提出一种新的思路(称之为“dataomni ...
- 几种自己主动运行js代码的方式
近期在看jquery,发现他竟然能自己主动运行js代码,于是就查了下.收集了几种经常使用的实现方法 jquery的方法 使用场景:不论什么须要运行的js特效 $(document).ready(fun ...
- C# step by step 学习笔记8 CHAPTER 9 使用枚举和结构创建值类型
C# 2012 step by step 学习笔记8 CHAPTER 9 使用枚举和结构创建值类型 本章内容 声明一个枚举类型 创建并使用一个枚举类型 声明一个结构类型 创建并使用一个结构类型 解释结 ...
- vim调用python格式化json数据
vim调用python格式化json数据 November 30, 2013GNU/Linuxpython3, Vimopenwares python有个标准模块叫json,用于编码/解码,序列化/按 ...
- css 滤镜之AlphaImageLoader
CreateTime--2017年12月25日17:05:37 Author:Marydon ie滤镜特效之AlphaImageLoader 作用: 用于设置背景图片特效样式 使用条件: IE8及 ...
- FlashBuilder找不到所需要的AdobeFlashPlayer调试器版本的解决方案
这个问题就是因为你所装的FlashPlayer不是调试器版本.如果你的FlashPlayer是调试版,那么你随便打开一个有Flash的页面,然后右键点击Flash,就会有一个调试器,菜单,当然它现在是 ...
- Python源代码--整数对象(PyIntObject)的内存池
[背景] 原文链接:http://blog.csdn.net/ordeder/article/details/25343633 Python整数对象是不可变对象,什么意思呢?比如运行例如以下pytho ...
- [原创] 在线音乐API的研究 (Part 2.1)
最近,在优化一个自己写的音乐播放器.主要目的是回顾.归纳,并希望能够写出一个属于自己的common lib.今天,主要是关于在线音乐API的一些分析结果.此次,主要分析的是歌词.专辑部分.在线搜索音乐 ...
- 记录:50多行程序中找出多写的一个字母e
小霍同学调程序,做的是第11周的项目1 - 存储班长信息的学生类,可是她写的程序(就在以下),呃,请读者自己执行一下吧.(下午在机房调试时用的是Code::Blocks10.05.输出的是非常长的莫名 ...