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

Up Down Subsequence

Platinum I 플래티넘 I
난이도
2s
시간 제한
256MB
메모리 제한
0
맞았습니다!!
0
제출 수
0.0%
정답률
레이팅

의견: 0

설명

Farmer John's \(N\) cows (\(2 \leq N \leq 3\cdot 10^5\)), conveniently numbered \(1 \ldots N\) as usual, have ordered themselves according to a permutation
\(p_1,p_2,\ldots,p_N\) of \(1\ldots N\). You are also
given a string of length \(N-1\) consisting of the letters U and D. Please find the
maximum \(K\le N-1\) such that there exists a subsequence \(a_0,a_1,\ldots,a_{K}\)
of \(p\) such that for all \(1\le j\le K\), \(a_{j - 1} < a_j\) if the \(j\)th letter in
the string is U, and \(a_{j - 1} > a_j\) if the \(j\)th letter in the string is D.

Problem credits: Danny Mittal

제약

SCORING

  • Test cases 3-4 satisfy \(N\le 500\).
  • Test cases 5-8 satisfy \(N\le 5000\).
  • In test cases 9-12, the string consists of Us followed by Ds.
  • Test cases 13-22 satisfy no additional constraints.

Problem credits: Danny Mittal

입력 형식

The first line contains \(N\).

The second line contains \(p_1,p_2,\ldots,p_N\).

The last line contains the string.

출력 형식

Write out maximum possible value of \(K\).

예제 1
입력
5
1 5 3 4 2
UDUD
출력
4
설명

We can choose \([a_0,a_1,a_2,a_3,a_4]=[p_1,p_2,p_3,p_4,p_5]\); the entire
permutation is consistent with the string.

예제 2
입력
5
1 5 3 4 2
UUDD
출력
3
설명

We can choose \([a_0,a_1,a_2,a_3]=[p_1,p_3,p_4,p_5]\).

문제 정보

riseoj 작성

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

태그

평가 및 의견

Up Down Subsequence

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

Log in to rate problems.

개별 의견

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

풀이 제출

Up Down Subsequence

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