zoukankan      html  css  js  c++  java
  • Codeforces Round #590 (Div. 3) B2. Social Network (hard version)

    链接:

    https://codeforces.com/contest/1234/problem/B2

    题意:

    The only difference between easy and hard versions are constraints on n and k.

    You are messaging in one of the popular social networks via your smartphone. Your smartphone can show at most k most recent conversations with your friends. Initially, the screen is empty (i.e. the number of displayed conversations equals 0).

    Each conversation is between you and some of your friends. There is at most one conversation with any of your friends. So each conversation is uniquely defined by your friend.

    You (suddenly!) have the ability to see the future. You know that during the day you will receive n messages, the i-th message will be received from the friend with ID idi (1≤idi≤109).

    If you receive a message from idi in the conversation which is currently displayed on the smartphone then nothing happens: the conversations of the screen do not change and do not change their order, you read the message and continue waiting for new messages.

    Otherwise (i.e. if there is no conversation with idi on the screen):

    Firstly, if the number of conversations displayed on the screen is k, the last conversation (which has the position k) is removed from the screen.
    Now the number of conversations on the screen is guaranteed to be less than k and the conversation with the friend idi is not displayed on the screen.
    The conversation with the friend idi appears on the first (the topmost) position on the screen and all the other displayed conversations are shifted one position down.
    Your task is to find the list of conversations (in the order they are displayed on the screen) after processing all n messages.

    思路:

    队列维护, map记录, 模拟即可.

    代码:

    #include <bits/stdc++.h>
    using namespace std;
    
    map<int, bool> Mp;
    deque<int> Que;
    int n, k;
    
    int main()
    {
        int id;
        scanf("%d%d", &n, &k);
        for (int i = 1;i <= n;i++)
        {
            scanf("%d", &id);
            if (!Mp[id])
            {
                Que.push_front(id);
                Mp[id] = true;
            }
            if (Que.size() > k)
            {
                int tmp = Que.back();
                Que.pop_back();
                Mp[tmp] = false;
            }
        }
        printf("%d
    ", (int)Que.size());
        while (!Que.empty())
        {
            printf("%d ", Que.front());
            Que.pop_front();
        }
    
        return 0;
    }
    
  • 相关阅读:
    AX 2012 Security Framework
    The new concept 'Model' in AX 2012
    How to debug the SSRS report in AX 2012
    Using The 'Report Data Provider' As The Data Source For AX 2012 SSRS Report
    Deploy SSRS Report In AX 2012
    AX 2012 SSRS Report Data Source Type
    《Taurus Database: How to be Fast, Available, and Frugal in the Cloud》阅读笔记
    图分析理论 大纲小结
    一文快速了解Posix IO 缓冲
    #转载备忘# Linux程序调试工具
  • 原文地址:https://www.cnblogs.com/YDDDD/p/11618493.html
Copyright © 2011-2022 走看看