zoukankan      html  css  js  c++  java
  • Codeforces 890B

    B. Vlad and Cafes
    time limit per test2 seconds
    memory limit per test256 megabytes
    inputstandard input
    outputstandard output
    Vlad likes to eat in cafes very much. During his life, he has visited cafes n times. Unfortunately, Vlad started to feel that his last visits are not any different from each other. To fix that Vlad had a small research.

    First of all, Vlad assigned individual indices to all cafes. Then, he wrote down indices of cafes he visited in a row, in order of visiting them. Now, Vlad wants to find such a cafe that his last visit to that cafe was before his last visits to every other cafe. In other words, he wants to find such a cafe that he hasn't been there for as long as possible. Help Vlad to find that cafe.

    Input
    In first line there is one integer n (1 ≤ n ≤ 2·105) — number of cafes indices written by Vlad.

    In second line, n numbers a1, a2, ..., an (0 ≤ ai ≤ 2·105) are written — indices of cafes in order of being visited by Vlad. Vlad could visit some cafes more than once. Note that in numeration, some indices could be omitted.

    Output
    Print one integer — index of the cafe that Vlad hasn't visited for as long as possible.

    Examples
    input
    5
    1 3 2 1 2
    output
    3
    input
    6
    2 1 2 2 4 1
    output
    2
    Note
    In first test, there are three cafes, and the last visits to cafes with indices 1 and 2 were after the last visit to cafe with index 3; so this cafe is the answer.

    In second test case, there are also three cafes, but with indices 1, 2 and 4. Cafes with indices 1 and 4 were visited after the last visit of cafe with index 2, so the answer is 2. Note that Vlad could omit some numbers while numerating the cafes.

     思路:

    利用Set添加元素,从后到前删除元素,size==1,停止,输出set中的begin元素

    代码:

     1 #include <bits/stdc++.h>
     2 using namespace std;
     3 int ans[200005];
     4 set<int> s;
     5 int main() {
     6     ios::sync_with_stdio(false);
     7     int n;
     8     scanf("%d",&n);
     9     for(int i=1;i<=n;++i) {
    10         scanf("%d",&ans[i]);
    11         s.insert(ans[i]);
    12     }
    13     for(int i=n;i>=1;--i) {
    14         if(s.size()==1)
    15             break;
    16         if(s.find(ans[i])!=s.end()) {
    17             s.erase(ans[i]);
    18         }
    19     }
    20     printf("%d
    ",*s.begin());
    21     return 0;
    22 }
    View Code
  • 相关阅读:
    你必须用角色管理工具安装Microsoft .NET Framework 3.5
    LINQ 小心Access to modified closure 问题
    .net BCL获取所有磁盘的信息
    对象的序列化和反序列化及其实现和使用
    对于CSDN博客文章不能爬取的问题
    IO与文件读写Java的IO流架构
    对象的深复制与浅复制 实现Cloneable接口实现深复制 序列化实现深复制
    博客园文章爬取代码
    【HtmlParser】HtmlParser使用
    爬虫简单示例,用httpClient4.2.1实现(转载)
  • 原文地址:https://www.cnblogs.com/lemonbiscuit/p/7825038.html
Copyright © 2011-2022 走看看