A850.Up Down Subsequence--Platinum

提高+/省选-

USACO

通过率:0%

时间限制:1.00s

内存限制:128MB

题目描述

Farmer John's NN cows (2N31052 \leq N \leq 3\cdot 10^5), conveniently numbered 1N1 \ldots N as usual, have ordered themselves according to a permutation
p1,p2,,pNp_1,p_2,\ldots,p_N of 1N1\ldots N. You are also given a string of length
N1N-1 consisting of the letters U and D. Please find the maximum KN1K\le N-1
such that there exists a subsequence a0,a1,,aKa_0,a_1,\ldots,a_{K} of pp such that
for all 1jK1\le j\le K, aj1<aja_{j - 1} < a_j if the jjth letter in the string is
U, and aj1>aja_{j - 1} > a_j if the jjth letter in the string is D.

输入格式

The first line contains NN.
The second line contains p1,p2,,pNp_1,p_2,\ldots,p_N.
The last line contains the string.

输出格式

Write out maximum possible value of KK.

输入输出样例

  • 输入#1

    5
    1 5 3 4 2
    UDUD
    

    输出#1

    4
    

说明/提示

We can choose [a0,a1,a2,a3,a4]=[p1,p2,p3,p4,p5][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.

首页