CF1562E.Rescue Niwen!

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Morning desert sun horizonRise above the sands of time...

Fates Warning, "Exodus"

After crossing the Windswept Wastes, Ori has finally reached the Windtorn Ruins to find the Heart of the Forest! However, the ancient repository containing this priceless Willow light did not want to open!

Ori was taken aback, but the Voice of the Forest explained to him that the cunning Gorleks had decided to add protection to the repository.

The Gorleks were very fond of the "string expansion" operation. They were also very fond of increasing subsequences.

Suppose a string s1s2s3sns_1s_2s_3 \ldots s_n is given. Then its "expansion" is defined as the sequence of strings s1s_1 , s1s2s_1 s_2 , ..., s1s2sns_1 s_2 \ldots s_n , s2s_2 , s2s3s_2 s_3 , ..., s2s3sns_2 s_3 \ldots s_n , s3s_3 , s3s4s_3 s_4 , ..., sn1sns_{n-1} s_n , sns_n . For example, the "expansion" the string 'abcd' will be the following sequence of strings: 'a', 'ab', 'abc', 'abcd', 'b', 'bc', 'bcd', 'c', 'cd', 'd'.

To open the ancient repository, Ori must find the size of the largest increasing subsequence of the "expansion" of the string ss . Here, strings are compared lexicographically.

Help Ori with this task!

A string aa is lexicographically smaller than a string bb if and only if one of the following holds:

  • aa is a prefix of bb , but aba \ne b ;
  • in the first position where aa and bb differ, the string aa has a letter that appears earlier in the alphabet than the corresponding letter in bb .

输入格式

Each test contains multiple test cases.

The first line contains one positive integer tt ( 1t1031 \le t \le 10^3 ), denoting the number of test cases. Description of the test cases follows.

The first line of each test case contains one positive integer nn ( 1n50001 \le n \le 5000 ) — length of the string.

The second line of each test case contains a non-empty string of length nn , which consists of lowercase latin letters.

It is guaranteed that the sum of nn over all test cases does not exceed 10410^4 .

输出格式

For every test case print one non-negative integer — the answer to the problem.

输入输出样例

  • 输入#1

    7
    5
    acbac
    8
    acabacba
    12
    aaaaaaaaaaaa
    10
    abacabadac
    8
    dcbaabcd
    3
    cba
    6
    sparky

    输出#1

    9
    17
    12
    29
    14
    3
    9

说明/提示

In first test case the "expansion" of the string is: 'a', 'ac', 'acb', 'acba', 'acbac', 'c', 'cb', 'cba', 'cbac', 'b', 'ba', 'bac', 'a', 'ac', 'c'. The answer can be, for example, 'a', 'ac', 'acb', 'acba', 'acbac', 'b', 'ba', 'bac', 'c'.

首页