LeetCode 911. 在线选举

【题目】
在选举中,第i张票是在时间为times[i]时投给persons[i]的。
现在,我们想要实现下面的查询函数:TopVotedCandidate.q(int t)将返回在t时刻主导选举的候选人的编号。
t时刻投出的选票也将被计入我们的查询之中。在平局的情况下,最近获得投票的候选人将会获胜。

【代码】

class TopVotedCandidate {
public:
    vector<pair<int, int>> li;
    TopVotedCandidate(vector<int> persons, vector<int> times) {
        int max_count = 0, max_count_person = 0;
        map<int, int> record;
        for(int i = 0; i < persons.size(); i++){
                auto res = record.find(persons[i]);
                if(res != record.end())
                {
                    record[persons[i]] ++;
                }
                else
                {
                    record[persons[i]] = 1;
                }
                if(record[persons[i]] >= max_count)
                {
                    max_count = record[persons[i]];
                    max_count_person = persons[i];
                }
                li.push_back({times[i], max_count_person});
        }
    }
    
    int q(int t) {
        int idx = 0;
        for(; idx < li.size(); idx++){
            if(li[idx].first > t){
                break;
            }
        }
        return li[idx-1].second;   
    }
};

/**
 * Your TopVotedCandidate object will be instantiated and called as such:
 * TopVotedCandidate obj = new TopVotedCandidate(persons, times);
 * int param_1 = obj.q(t);
 */
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值