486E - LIS of Sequence - CodeForces Solution


data structures dp greedy hashing math *2200

Please click on ads to support us..

C++ Code:

#include <stdio.h>
#include <vector>
#include <algorithm>

using namespace std;

vector<int> Last;
int N;
int AA[100005];
int LL[100005];
int BB[100005];
int SS[100005];
int TT[100005];
int ans[100005];

void LIS(int A[], int L[])
{
	vector<int>::iterator it;
	Last.push_back(-100);
	for (int i = 1; i <=N; i++)
	{
		if (Last.back() < A[i])
		{
			Last.push_back(A[i]);
		}

		it = lower_bound(Last.begin(), Last.end(), A[i]);
		*it = A[i];
		L[i] = it - Last.begin();
	}
}

int main()
{
	int LEN, maxi, mini;
	scanf("%d", &N);
	for (int i = 1; i <= N; i++)
	{
		scanf("%d", &AA[i]);
	}

	LIS(AA, LL);
	LEN = 0;
	for (int i = 1; i <= N; i++)
	{
		LEN = max(LEN, LL[i]);
	}
	Last.clear();
	for (int i = 1; i <= N; i++)
	{
		BB[N - i + 1] = 1000000 - AA[i];
	}
	LIS(BB, SS);
	for (int i = 1; i <= N; i++)
	{
		TT[N - i + 1] = SS[i];
	}

	for (int i = 1; i <= N; i++)
	{
		ans[i] = 1;
	}

	for (int i = 1; i <= N; i++)
	{
		if (LL[i] + TT[i] == LEN + 1) ans[i] = 3;
	}
	maxi = 0;
	for (int i = 1; i <= N; i++)
	{
		if (ans[i] != 1)
		{
			if (AA[i] <= maxi) ans[i] = 2;
			maxi = max(maxi, AA[i]);
		}
	}
	mini = 1000000;
	for (int i = N; i >= 1; i--)
	{
		if (ans[i] != 1)
		{
			if (AA[i] >= mini) ans[i] = 2;
			mini = min(mini, AA[i]);
		}
	}
	
	for(int i = 1; i <= N; i++)
	{
		printf("%d", ans[i]);
	}
	printf("\n");


	return 0;

}


Comments

Submit
0 Comments
More Questions

580A- Kefa and First Steps
1472B- Fair Division
996A - Hit the Lottery
MSNSADM1 Football
MATCHES Playing with Matches
HRDSEQ Hard Sequence
DRCHEF Doctor Chef
559. Maximum Depth of N-ary Tree
821. Shortest Distance to a Character
1441. Build an Array With Stack Operations
1356. Sort Integers by The Number of 1 Bits
922. Sort Array By Parity II
344. Reverse String
1047. Remove All Adjacent Duplicates In String
977. Squares of a Sorted Array
852. Peak Index in a Mountain Array
461. Hamming Distance
1748. Sum of Unique Elements
897. Increasing Order Search Tree
905. Sort Array By Parity
1351. Count Negative Numbers in a Sorted Matrix
617. Merge Two Binary Trees
1450. Number of Students Doing Homework at a Given Time
700. Search in a Binary Search Tree
590. N-ary Tree Postorder Traversal
589. N-ary Tree Preorder Traversal
1299. Replace Elements with Greatest Element on Right Side
1768. Merge Strings Alternately
561. Array Partition I
1374. Generate a String With Characters That Have Odd Counts