CF2A Winner(map+思维)

简介: CF2A Winner(map+思维)

题目描述:

The winner of the card game popular in Berland “Berlogging” is determined according to the following rules. If at the end of the game there is only one player with the maximum number of points, he is the winner. The situation becomes more difficult if the number of such players is more than one. During each round a player gains or loses a particular number of points. In the course of the game the number of points is registered in the line “name score”, where name is a player’s name, and score is the number of points gained in this round, which is an integer number. If score is negative, this means that the player has lost in the round. So, if two or more players have the maximum number of points (say, it equals to mm ) at the end of the game, than wins the one of them who scored at least mm points first. Initially each player has 0 points. It’s guaranteed that at the end of the game at least one player has a positive number of points.


输入:

The first line contains an integer number nn ( 1<=n<=10001<=n<=1000 ), nn is the number of rounds played. Then follow nn lines, containing the information about the rounds in “name score” format in chronological order, where name is a string of lower-case Latin letters with the length from 1 to 32, and score is an integer number between -1000 and 1000, inclusive.

输出:

Print the name of the winner.


大意:纸牌游戏,进行n回合,每回合一条 名字+分数 信息的组合,找出游戏结束最高分的玩家,如果最高分有多位,找出第一个达到最高分的玩家


思路:

先把结束时的最高分找出来,然后按照输入顺序去找第一个到达最大分的即可,那么如何找最高分玩家里第一个达到最大分的呢,首先这个玩家的最终分要等于最高分,其次在过程中这个玩家的分数要第一个 >= 最大分,有大于是因为他可能掉分,但是他第一个达到了

#include<bits/stdc++.h>
using namespace std;
typedef unsigned long long ull;
typedef long long ll;
const ll maxx = 1e18;
const int N = 1e6+100;
const int ps = 1e4+10;
const double eps = 1e-8;
map<string,int >mp,mps;
int n,k,max1;
string s[1001],ans;
int a[1001];
int main()
{
  cin>>n;
  for(int i=1;i<=n;i++)
  {
    cin>>s[i]>>a[i];
    mp[s[i]]+=a[i];
  }//第一遍处理,记录最终状态
  for(auto k : mp)
  {
    max1=max(max1,k.second);
  }//找出最大分
  for(int i=1;i<=n;i++)
  {
    mps[s[i]]+=a[i];
    if(mp[s[i]]==max1&&mps[s[i]]>=max1)
    {
      ans=s[i];
      break;
    }
  }//第二遍处理,找出分数等于最大分且在过程中第一个 >= 最大分的选手
  cout<<ans;
}


反思:

这个题的思路特别巧妙,相当于把处理过程做了两遍,第一遍先找出最高分,第二遍找出最先达到最高分的选手,注意可能会有减分的影响;

目录
相关文章
|
安全 Java
【面试】Java集合中List,Set以及Map等集合体系详解
【面试】Java集合中List,Set以及Map等集合体系详解
74 0
CF1553B Reverse String(数学思维)
CF1553B Reverse String(数学思维)
43 0
|
6月前
|
存储 安全 Java
Java 集合(List、Set、Map 等)相关问答归纳再整理
HashMap 中使用键对象来计算 hashcode 值 HashSet 使用成员对象来计算 hashcode 值,对于两个对象来说hashcode 可能相同,所以 equals() 方法用来判断对象的相等性,如果两个对象不同的话,那么返回 false。 HashMap 比较快,因为是使用唯一的键来获取对象,HashSet 较 HashMap 来说比较慢。 4.1.3 HashMap 与 TreeMap
37 2
|
7月前
|
存储 自然语言处理 C++
c++的学习之路:25、map与set
c++的学习之路:25、map与set
54 0
CF219A k-String(数学分析)
CF219A k-String(数学分析)
70 0
CF763A Timofey and a tree(思维)
CF763A Timofey and a tree(思维)
86 0
|
前端开发
前端学习案例4-对象的迭代和map和set
前端学习案例4-对象的迭代和map和set
79 0
前端学习案例4-对象的迭代和map和set
|
前端开发
前端学习案例5-对象的迭代和map和set2
前端学习案例5-对象的迭代和map和set2
57 0
前端学习案例5-对象的迭代和map和set2
|
存储
三道题教你快速掌握Map和Set
Map 和 Set 都是接口类,都不能不能直接实例化对象,如果要实例化只能实例化其对于实现类!
三道题教你快速掌握Map和Set