Codeforces Round #620 (Div. 2):Shortest and Longest LIS

Discription
Gildong recently learned how to find the longest increasing subsequence (LIS) in O(nlogn) time for a sequence of length n. He wants to test himself if he can implement it correctly, but he couldn’t find any online judges that would do it (even though there are actually many of them). So instead he’s going to make a quiz for you about making permutations of n distinct integers between 1 and n, inclusive, to test his code with your output.

The quiz is as follows.

Gildong provides a string of length n−1, consisting of characters ‘<’ and ‘>’ only. The i-th (1-indexed) character is the comparison result between the i-th element and the i+1-st element of the sequence. If the i-th character of the string is ‘<’, then the i-th element of the sequence is less than the i+1-st element. If the i-th character of the string is ‘>’, then the i-th element of the sequence is greater than the i+1-st element.

He wants you to find two possible sequences (not necessarily distinct) consisting of n distinct integers between 1 and n, inclusive, each satisfying the comparison results, where the length of the LIS of the first sequence is minimum possible, and the length of the LIS of the second sequence is maximum possible.

Input
Each test contains one or more test cases. The first line contains the number of test cases t (1≤t≤104).

Each test case contains exactly one line, consisting of an integer and a string consisting of characters ‘<’ and ‘>’ only. The integer is n (2≤n≤2⋅105), the length of the permutation you need to find. The string is the comparison results explained in the description. The length of the string is n−1.

It is guaranteed that the sum of all n in all test cases doesn’t exceed 2⋅105.

Output
For each test case, print two lines with n integers each. The first line is the sequence with the minimum length of the LIS, and the second line is the sequence with the maximum length of the LIS. If there are multiple answers, print any one of them. Each sequence should contain all integers between 1 and n, inclusive, and should satisfy the comparison results.

It can be shown that at least one answer always exists.

Example
input

3
3 <<
7 >><>><
5 >>><

output

1 2 3
1 2 3
5 4 3 7 2 1 6
4 3 1 7 5 2 6
4 3 2 1 5
5 4 2 1 3

Note
In the first case, 1 2 3 is the only possible answer.

In the second case, the shortest length of the LIS is 2, and the longest length of the LIS is 3. In the example of the maximum LIS sequence, 4 ‘3’ 1 7 ‘5’ 2 ‘6’ can be one of the possible LIS.

题意
给定一个长度为n-1的只有大于号和小于号的字符串,有n个数字按照字符串的规则填入。
求最大上升子串最大和最小的两种填法。

思路
如果求最小的,则尽量按照规则让其逆序排列。
如果是要求最长的,则按照规则让其正序。

AC代码

#include<bits/stdc++.h>
using namespace std;
const int N = 2e5 + 2;

int t, n, p;
char s[N];

int main()
{
    scanf("%d", &t);
    while(t--)
    {
        scanf("%d%s", &n, s + 1);
        s[n] = '>', p = 0;
        for(int i = 1; i <= n; i++)
            if(s[i] == '>')
            {
                for(int j = n - i + 1; j <= n - p; j++)
                    printf("%d ", j);
                p = i;
            }
        putchar('\n');
        s[n] = '<', p = 0;
        for(int i = 1; i <= n; i++)
            if(s[i] == '<')
            {
                for(int j = i; j > p; j--)
                    printf("%d ", j);
                p = i;
            }
        putchar('\n');
    }
    return 0;
}
发布了315 篇原创文章 · 获赞 105 · 访问量 2万+

猜你喜欢

转载自blog.csdn.net/weixin_43460224/article/details/104349881