叠放书籍~~

#include
#include
#include
#include

using namespace std;

void stackBook(string books)
{
    vector> arr;
    char str[books.size() + 1];
    strcpy(str, books.c_str());
    char* p = strtok(str, "[],");

    while(p != NULL)
    {
        vector temp;
        temp.push_back(stoi(p));
        p = strtok(NULL, "[],");
        temp.push_back(stoi(p));
        arr.push_back(temp);
        p = strtok(NULL, "[],");
    }

    sort(arr.begin(), arr.end(), [](const vector& a, const vector& b)
            {
            if(a[0] != b[0])
            {
            return a[0] < b[0];
            }
            else
            {
            return a[1] < b[1];
            }
            });

    int len = arr.size();
    vector dp(len, 1);
    int result = 1;

    for(int i = 1; i < len; i++)
    {
        vector cur = arr[i];
        for(int j = 0; j < i; j++)
        {
            vector pre = arr[j];
            if(cur[0] > pre[0] && cur[1] > pre[1])
            {
                dp[i] = max(dp[i], dp[j] + 1);
            }

            result = max(result, dp[i]);
        }
    }

    cout << result << endl;
}

int main()
{
    stackBook("[[20,16],[15,11],[10,10],[9,9]]");
    return 0;
}
 

你可能感兴趣的:(算法,算法,c++,数据结构)