#586
Unrated
Subset Equality
시간 제한
2s
메모리 제한
1024MB
제출
0
정답
0
맞힌 사람
0
정답 비율
0.0%

문제

The cows are trying out a new method of exchanging coded messages with each-other where they mix irrelevant letters in among relevant letters to make the messages hard to decode.

The cows transmit two strings ss and tt each of length at most 10510^5 consisting only of the lowercase English letters 'a' through 'r'. To try and make sense of this coded message, you will be given QQ queries (1Q1051 \leq Q \leq 10^5). Each query provides a subset of the lowercase English letters from 'a' to 'r.' You need to determine for each query whether ss and tt, when restricted only to the letters in the query, are equal.

입력

First line contains ss.

Second line contains tt.

Third line contains QQ.

Next QQ lines each contain a query string. Within a query string, no letters are repeated. Furthermore, all query strings are in sorted order, and no query string appears more than once.

출력

For each query, print 'Y' if ss and tt, when restricted only to the letters in the query, are equal, or 'N' otherwise.

예제 입력 1

aabcd
caabd
4
a
ac
abd
abcd

예제 출력 1

YNYN

점수

Test case 2 satisfies s,t,Q1000|s|, |t|, Q \le 1000.Test cases 3-11 satisfy no additional constraints.

코드 제출

코드를 제출하려면 로그인이 필요합니다.

로그인
내 제출
제출 내역이 없습니다.
맞은 사람
아직 맞은 사람이 없습니다.
난이도 투표
Unrated0명 투표
로그인 후 AC 받으면 투표할 수 있습니다.
전체 제출
제출 내역이 없습니다.