RiseOJ는 solved.ac와 제휴 관계가 없습니다. 티어 아이콘 © solved.ac. solved.ac
포럼
USACO0523

Subset Equality

Platinum V 플래티넘 V
난이도
2s
시간 제한
256MB
메모리 제한
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 \(s\) and \(t\) each of length at most \(10^5\) consisting
only of the lowercase English letters 'a' through 'r'. To try and make sense
of this coded message, you will be given \(Q\) queries (\(1 \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 \(s\) and \(t\), when restricted only to the letters in the query, are
equal.

Problem credits: Danny Mittal

제약

SCORING

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

Problem credits: Danny Mittal

입력 형식

First line contains \(s\).

Second line contains \(t\).

Third line contains \(Q\).

Next \(Q\) 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 \(s\) and \(t\), when restricted only to the letters in
the query, are equal, or 'N' otherwise.

예제 1
입력
aabcd
caabd
4
a
ac
abd
abcd
출력
YNYN
설명

For the first query, both strings become "aa" when restricted only to 'a.'

For the second query, the first string becomes "aac" while the second string
becomes "caa."

문제 정보

riseoj 작성

출처 올림피아드 > USACO > 2021-2022 > US Open > Silver

태그

평가 및 의견

Subset Equality

개요
출제자 난이도 Platinum V 플래티넘 V 의견 0 / 50 공개 집계 (커뮤니티 난이도, 주요 주제, 품질)는 의견이 충분히 모이면 공개됩니다.

Log in to rate problems.

개별 의견

아직 의견이 없습니다. 자격이 된다면 위 양식에서 가장 먼저 평가해 보세요.

풀이 제출

Subset Equality

게스트로 둘러보고 있습니다. 로그인하면 풀이를 제출하고 진행 상황을 확인할 수 있습니다. 로그인하고 제출하기
공개
C++20 Tab 들여쓰기 · Ctrl+/ 주석 토글 · Enter 자동 들여쓰기
1 1 1 0 공백: 4 · UTF-8