思科 9.20 笔试代码题

#include <bits/stdc++.h>
using namespace std;
int main()
{
    int n,m;
    cin >> n >> m;
    vector<int> nums(n, 0);
    vector<bool> vis(n, false);
    vector<char> ret(n, 0);
    map<int, int, greater<int>> hash;
    for(int i = 0;i < n;i++)
    {
        cin >> nums[i];
        hash.insert({nums[i], i});
    }
    char cur = 'A';
    auto it = hash.begin();
    while(it != hash.end())
    {
        int max_index = it->second;
        if(vis[max_index])
        {
            it++;
            continue;
        }
        ret[max_index] = cur;
        vis[max_index] = true;
        int i = 0;
        while(max_index+1 < n && i < m )
        {
            if(!vis[max_index + 1])
            {
                i++;
                vis[max_index+1] = true;
                ret[max_index+1] = cur;
            }
            max_index++;
        }
        i = 0;
        max_index = it->second;
        while(max_index-1 >= 0 && i < m )
        {
            if(!vis[max_index - 1])
            {
                i++;
                vis[max_index-1] = true;
                ret[max_index-1] = cur;
            }
            max_index--;
        }
        if(cur == 'A') cur = 'B';
        else cur = 'A';
        hash.erase(it++);
    }

    for(int i = 0;i < n;i++)
        cout << ret[i];
    return 0;
}

#思科#
全部评论
感谢分享笔试代码题
点赞 回复 分享
发布于 2022-09-22 16:52 河南
请问楼主思科面试了吗
点赞 回复 分享
发布于 2022-09-27 10:29 天津

相关推荐

评论
1
4
分享

创作者周榜

更多
牛客网
牛客企业服务