CodeForces - 1304D Shortest and Longest LIS

一、内容

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. Theinteger 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 nin all test cases doesn't exceed 2⋅105

Output

  For each test case, print two lines with nintegers 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

二、思路

- 首先看使LIS 最小值的情况。

三、代码

#include <cstdio>
const int N = 2e5 + 5;
int t, n, p[N];
char s[N];
int main () {
	scanf("%d", &t);
	while (t--) {
		scanf("%d%s", &n, s + 1); 
		int len = n - 1, cnt = 0;
		for (int i = 1; i <= len; i++) if (s[i] == '<') cnt++;
		int st = n - cnt, et = n, l = 1; p[0] = st--;
		while (l <= len) {
			if (s[l] == '>') p[l++] = st--;
			else {
				int t = l + 1;
				while (s[t] == '<' && t <= len) t++;
				for (int i = t - 1; i >= l; i--) p[i] = et--;
				l = t;
			}
		}
		for (int i = 0; i <= len; i++) printf("%d ", p[i]); printf("\n");
		//最长的LIS 
		st = n - cnt, et = n - cnt + 1, l = 1; p[0] = st--;
		while (l <= len) {
			if (s[l] == '>') p[l++] = st--;
			else p[l++] = et++;
		}
		for (int i = 0; i <= len; i++) printf("%d ", p[i]); printf("\n");
	}
	return 0;
}
发布了456 篇原创文章 · 获赞 466 · 访问量 7万+

猜你喜欢

转载自blog.csdn.net/qq_41280600/article/details/104341512