A14228 | Yet Another Card Deck
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
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 $a_i$ .
You should process $q$ queries. The $j$ -th query is described by integer $t_j$ . For each query you should:
- find the highest card in the deck with color $t_j$ , 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.
You should process $q$ queries. The $j$ -th query is described by integer $t_j$ . For each query you should:
- find the highest card in the deck with color $t_j$ , 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.
输入格式
The first line contains two integers $n$ and $q$ ( $2 \le n \le 3 \cdot 10^5$ ; $1 \le q \le 3 \cdot 10^5$ ) — the number of cards in the deck and the number of queries.
The second line contains $n$ integers $a_1, a_2, \dots, a_n$ ( $1 \le a_i \le 50$ ) — the colors of cards.
The third line contains $q$ integers $t_1, t_2, \dots, t_q$ ( $1 \le t_j \le 50$ ) — the query colors. It's guaranteed that queries ask only colors that are present in the deck.
The second line contains $n$ integers $a_1, a_2, \dots, a_n$ ( $1 \le a_i \le 50$ ) — the colors of cards.
The third line contains $q$ integers $t_1, t_2, \dots, t_q$ ( $1 \le t_j \le 50$ ) — the query colors. It's guaranteed that queries ask only colors that are present in the deck.
输出格式
Print $q$ integers — the answers for each query.
输入输出样例
输入 #1
7 5 2 1 1 4 3 3 1 3 2 1 1 4
输出 #1
5 2 3 1 5
Description of the sample:
1. the deck is $[2, 1, 1, 4, \underline{3}, 3, 1]$ and the first card with color $t_1 = 3$ has position $5$ ;
2. the deck is $[3, \underline{2}, 1, 1, 4, 3, 1]$ and the first card with color $t_2 = 2$ has position $2$ ;
3. the deck is $[2, 3, \underline{1}, 1, 4, 3, 1]$ and the first card with color $t_3 = 1$ has position $3$ ;
4. the deck is $[\underline{1}, 2, 3, 1, 4, 3, 1]$ and the first card with color $t_4 = 1$ has position $1$ ;
5. the deck is $[1, 2, 3, 1, \underline{4}, 3, 1]$ and the first card with color $t_5 = 4$ has position $5$ .
1. the deck is $[2, 1, 1, 4, \underline{3}, 3, 1]$ and the first card with color $t_1 = 3$ has position $5$ ;
2. the deck is $[3, \underline{2}, 1, 1, 4, 3, 1]$ and the first card with color $t_2 = 2$ has position $2$ ;
3. the deck is $[2, 3, \underline{1}, 1, 4, 3, 1]$ and the first card with color $t_3 = 1$ has position $3$ ;
4. the deck is $[\underline{1}, 2, 3, 1, 4, 3, 1]$ and the first card with color $t_4 = 1$ has position $1$ ;
5. the deck is $[1, 2, 3, 1, \underline{4}, 3, 1]$ and the first card with color $t_5 = 4$ has position $5$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted