LeetCode. 673. 최장 증자 서열의 개수(동적 기획 + 상태 누적)

8644 단어 동적 기획LeetCode
#include 
#include 
using namespace std;
class Solution {
public:
	int findNumberOfLIS(vector<int>& nums) {
		pair<int, int> result(1, 0);										//   +   
		vector<pair<int, int>> count(nums.size(), pair<int, int>(1, 1));	//               +   
		for (int i = 0; i < nums.size(); ++i)
		{
			for (int j = 0; j < i; ++j) {
				//                 &&         LIS + 1 >=      LIS
				if (nums[j] < nums[i] && count[j].first + 1 >= count[i].first) {
					//  LIS  ,    LIS       
					if (count[i].first == count[j].first + 1) {
						count[i].second += count[j].second;
					}
					//LIS   ,     LIS    LIS   
					else {
						count[i].first = count[j].first + 1;
						count[i].second = count[j].second;
					}
				}
			}

			//    LIS         
			//  LIS   
			if (result.first < count[i].first) {
				result.first = count[i].first;
				result.second = count[i].second;
			}
			//   LIS  ,     
			else if (result.first == count[i].first)
				result.second += count[i].second;
		}
		return result.second;
	}
};

좋은 웹페이지 즐겨찾기