PivotOJ

ZigZag

시간 제한: 2000ms메모리 제한: 64MB출처: COCI 2017-2018BOJ 15323

문제

Zig and Zag are playing a word game. Zig says one letter, and Zag says a word that starts with that letter. However, the word needs to be from the allowed word list and such that Zag already said it the least amount of times. If the word choice is ambiguous, then Zag will choose the one that is lexicographically smaller (sooner in the alphabet). For each Zig’s letter, it will be possible to choose a word.

Let there be a list consisting of exactly K distinct words and an array of N letters that Zig has given. Write a program that will, based on the input, output an array of N words that Zag said during the game.

입력

The first line of input contains positive integers K (1 ≤ K ≤ 100 000) and N (1 ≤ N ≤ 100 000) from the task.

Each of the following K lines contains a single word consisting of lowercase letters of the English alphabet not longer than 21 characters.

Each of the following N lines contains a single lowercase letter of the English alphabet.

출력

You must output N lines, each containing a single word from the task.

예제

예제 1

입력
4 5
zagreb
split
zadar
sisak
z
s
s
z
z
출력
zadar
sisak
split
zagreb
zadar

예제 2

입력
5 3
london
rim
pariz
moskva
sarajevo
p
r
p
출력
pariz
rim
pariz

예제 3

입력
1 3
zagreb
z
z
z
출력
zagreb
zagreb
zagreb
코드를 제출하려면 로그인하세요.