Sereja and Suffixes

简介: Sereja and Suffixes


 

J - Sereja and Suffixes

Time Limit:1000MS     Memory Limit:262144KB     64bit IO Format:%I64d & %I64u

Submit Status

Description

Sereja has an array a, consisting of n integers a1, a2, ..., an. The boy cannot sit and do nothing, he decided to study an array. Sereja took a piece of paper and wrote out m integers l1, l2, ..., lm(1 ≤ li ≤ n). For each number li he wants to know how many distinct numbers are staying on the positions li, li + 1, ..., n. Formally, he want to find the number of distinct numbers among ali, ali + 1, ..., an.?

Sereja wrote out the necessary array elements but the array was so large and the boy was so pressed for time. Help him, find the answer for the described question for each li.

Input

The first line contains two integers n and m(1 ≤ n, m ≤ 105). The second line contains n integers a1, a2, ..., an(1 ≤ ai ≤ 105) — the array elements.

Next m lines contain integers l1, l2, ..., lm. The i-th line contains integer li(1 ≤ li ≤ n).

Output

Print m lines — on the i-th line print the answer to the number li.

Sample Input

Input

10 10
1 2 3 4 1 2 3 4 100000 99999
1
2
3
4
5
6
7
8
9
10

Output

6
6
6
6
6
5
4
3
2
1

 

 

 

 

 

题目分析:

这个题目应该是好读懂的,

 

10 10
1 2 3 4 1 2 3 4 100000 99999
1
2
3
4
5
6
7
8
9
10

 

 

10  10

10  这个数列有10个元素

10  有10个数据测试

1  数列从第一个数开始到最后有多少个不同的数 6(自己数一下)

2  数列从第二个数开始到最后有多少个不同的数 6

3  数列从第三个数开始到最后有多少个不同的数 6

.

7  数列从第7  个数开始到最后有 多少个不同的数 4

.

10 数列从第10个数开始到最后有多少个不同的数 1

 

 

 

#include<cstdio>
#include<cstring>
#include<algorithm>
#define maxn 100010
using namespace std;
int a[maxn],b[maxn],c[maxn];
int main()
{
  int n,m;
  while(~scanf("%d%d",&n,&m))
  {
    
    memset(b,0,sizeof(b));
    memset(c,0,sizeof(c));
    for(int i=0;i<n;i++)
      scanf("%d",&a[i]);
    int ans=0;
    for(int i=n-1;i>=0;i--)
    {
      if(!b[a[i]])
        ans++;
        b[a[i]]=1;
        c[i]=ans;
    }
//    for(int i=0;i<n;i++)
//      printf("%d ",c[i]);
//      printf("\n");
    int t;
    for(int i=0;i<m;i++)
    {
      scanf("%d",&t);
      printf("%d\n",c[t-1]);
    }
  }
  return 0;
}

 

 

 

 

 

目录
相关文章
|
2月前
|
负载均衡 网络协议 应用服务中间件
如何配置 DNS 轮询负载均衡以实现高可用性
如何配置 DNS 轮询负载均衡以实现高可用性
118 4
|
5月前
|
存储 缓存 关系型数据库
智能辅助驾驶业务遭遇大表瓶颈,小鹏汽车如何破局?
小鹏汽车在智能辅助驾驶业务中遇到数据库性能挑战,如大表查询慢、频繁更新和存储空间快速膨胀。他们原使用的是社区版PostgreSQL,但随着数据量增长,性能瓶颈日益凸显。为了解决这些问题,小鹏汽车采用了阿里云的PolarDB-PG。 PolarDB-PG 的存储具备弹性扩容的能力,最大可支持 100 TB 存储空间。它的大表优化和弹性跨机并行查询(ePQ),成功解决了社区 PostgreSQL 针对大表的查询和并发更新慢的问题。在小鹏汽车的智能辅助驾驶业务上,实现了每日 TB 级大数据表的 7000 万行更新和大数据表秒级分析查询。
|
3月前
|
网络协议 Linux 数据库
计算机网络知识之URL、IP、子网掩码、端口号
计算机网络知识之URL、IP、子网掩码、端口号
|
5月前
|
Java
hdu-1016-Prime Ring Problem
hdu-1016-Prime Ring Problem
26 0
|
5月前
|
Java
hdu-1513-Palindrome
hdu-1513-Palindrome
16 0
|
5月前
|
Java
HDU-1686-Oulipo
HDU-1686-Oulipo
22 0
|
5月前
poj 3984 迷宫问题(BFS+输出路径)
poj 3984 迷宫问题(BFS+输出路径)
22 0
|
5月前
|
Java
hdu-1312-Red and Black
hdu-1312-Red and Black
31 0
|
5月前
hpu-1690-CZY的组合数烦恼
hpu-1690-CZY的组合数烦恼
33 0
|
5月前
|
Cloud Native Devops 持续交付
构建未来:云原生技术在企业数字化转型中的关键角色
【4月更文挑战第10天】 随着企业加速其数字化转型的步伐,云原生技术已经成为推动创新和实现敏捷性的关键驱动力。本文深入探讨了云原生架构的核心组件,包括容器化、微服务、持续集成/持续交付(CI/CD)以及DevOps实践,并分析了这些技术如何共同促进企业灵活应对市场变化、提高运营效率和加强客户体验。通过实际案例分析,文章强调了云原生技术在帮助企业实现真正弹性和可扩展性方面的重要性,同时指出了企业在采用云原生路径时面临的挑战和解决策略。