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;
}


反思:

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

目录
相关文章
CF1567C. Carrying Conundrum(思维)
CF1567C. Carrying Conundrum(思维)
98 0
|
人工智能
CF1573B. Swaps(思维)
CF1573B. Swaps(思维)
103 0
CF763A Timofey and a tree(思维)
CF763A Timofey and a tree(思维)
94 0
CF1553B Reverse String(数学思维)
CF1553B Reverse String(数学思维)
51 0
|
语音技术 网络架构 Windows
CF1560 E. Polycarp and String Transformation(思维 枚举)
CF1560 E. Polycarp and String Transformation(思维 枚举)
86 0
|
人工智能 BI
CF761D Dasha and Very Difficult Problem(构造 思维)
CF761D Dasha and Very Difficult Problem(构造 思维)
89 0
|
机器学习/深度学习 算法 定位技术
[2019 EC Final] Flow | 贪心 + 思维
这m条边的容量都是≥ 0 的,在某一条便的容量> 0 的时候,可以进行若干次操作(也可以为0,即不进行操作):{ 选择一条容量大于0的边,将他的容量-1,然后选择一条其他的边,让这条边的容量+1 } 问在图中的最大流尽可能大的情况下,最少的操作步数是多少?
153 0
|
8月前
CF 1538 G. Gift Set (贪心+思维)
【6月更文挑战第14天】
52 0
CF219A k-String(数学分析)
CF219A k-String(数学分析)
78 0

热门文章

最新文章