C. Yet Another Card Deck

time limit per test

2 seconds

memory limit per test

256 megabytes

You have a card deck of n cards, numbered from top to bottom, i. e. the top card has index 1 and bottom card --- index n. Each card has its color: the i-th card has color ai.

You should process q queries. The j-th query is described by integer tj. For each query you should:

  • find the highest card in the deck with color tj, i. e. the card with minimum index;
  • print the position of the card you found;
  • take the card and place it on top of the deck.

Input

The first line contains two integers n and q (2≤n≤3⋅105; 1≤q≤3⋅105) --- the number of cards in the deck and the number of queries.

The second line contains n integers a1,a2,...,an (1≤ai≤50) --- the colors of cards.

The third line contains q integers t1,t2,...,tq (1≤tj≤50) --- the query colors. It's guaranteed that queries ask only colors that are present in the deck.

Output

Print q integers --- the answers for each query.

Example

Input

Copy

复制代码
7 5
2 1 1 4 3 3 1
3 2 1 1 4

Output

Copy

复制代码
5 2 3 1 5 

Note

Description of the sample:

  1. the deck is [2,1,1,4,3--,3,1] and the first card with color t1=3 has position 5;
  2. the deck is [3,2--,1,1,4,3,1] and the first card with color t2=2 has position 2;
  3. the deck is [2,3,1--,1,4,3,1] and the first card with color t3=1 has position 3;
  4. the deck is [1--,2,3,1,4,3,1] and the first card with color t4=1 has position 1;
  5. the deck is [1,2,3,1,4--,3,1] and the first card with color t5=4 has position 5.

解题说明:此题是一道模拟题,其实就是对队列进行操作。根据题目意思找出数字,然后进行移动,不断输出查找的值即可。

cpp 复制代码
#include<stdio.h>
int a[300005];
int main()
{
	int n, q, t;
	scanf("%d %d", &n, &q);
	for (int i = 1; i <= n; i++) 
	{
		scanf("%d", &a[i]);
	}
	for (int i = 1; i <= q; i++)
	{
		int fg1;
		scanf("%d", &t);
		for (int j = 1; j <= n; j++) 
		{
			if (a[j] == t)
			{
				printf("%d ", j);
				fg1 = j;
				break;
			}
		}
		for (int k = fg1; k > 1; k--)
		{
			a[k] = a[k - 1];
		}
		a[1] = t;
	}
	return 0;
}
相关推荐
Highcharts.js3 小时前
倒置百分比堆叠面积图表示列详解|Highcharts大气成分图表代码
开发语言·信息可视化·highcharts·图表开发·面积图·图表示例·推叠图
csdn_aspnet3 小时前
C语言 Lomuto分区算法(Lomuto Partition Algorithm)
c语言·开发语言·算法
晨曦中的暮雨3 小时前
4.15腾讯 CSIG云服务产线 一面
java·开发语言
存在morning3 小时前
【GO语言开发实践】二 GO 并发快速上手
大数据·开发语言·golang
谙弆悕博士3 小时前
【附C源码】从零实现C语言堆数据结构:原理、实现与应用
c语言·数据结构·算法··数据结构与算法
xiaoerbuyu12334 小时前
开源Java 邮箱 基于SpringBoot+Vue前后端分离的电子邮件
java·开发语言
sparEE5 小时前
c++值类别、右值引用和移动语义
开发语言·c++
zhangjw345 小时前
第11篇:Java Map集合详解,HashMap底层原理、哈希冲突、JDK1.8优化、遍历方式彻底吃透
java·开发语言·哈希算法
benpaodeDD7 小时前
视频10,11,12,13——java程序的加载与执行,安装jdk
java·开发语言
一颗牙牙7 小时前
安装mmcv
开发语言·python·深度学习