-
Notifications
You must be signed in to change notification settings - Fork 0
/
Netease1.cpp
94 lines (88 loc) · 2.19 KB
/
Netease1.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
#include <iostream>
#include <map>
#include <vector>
using namespace std;
// struct node
// {
// int val;
// node* left;
// node* right;
// };
// node* create(const string& post,const string& mid,int postL,int postR,int midL,int midR)
// {
// if(postL > postR)
// return nullptr;
// node* root = new node;
// root->val = post[postR];
// int index = 0;
// for(index = midL;index <= midR;index++)
// {
// if(mid[index] == post[postR])
// break;
// }
// int numLeft;
// numLeft = index - midL;
// root->left = create(post,mid,postL,postL+numLeft-1,midL,index-1);
// root->right = create(post,mid,postL+numLeft, postR-1,index+1,midR);
// return root;
// }
// int sub(node* root)
// {
// int left = 0;
// int right = 0;
// if(root == nullptr)
// return 0;
// else
// {
// if(root->left != nullptr)
// {
// left = 1 + sub(root->left);
// }
// if(root->right != nullptr)
// {
// right = 1 + sub(root->right);
// }
// mpL[root] = left;
// mpR[root] = right;
// }
// return max(left,right);
// }
int sub(const string &post, const string &mid, int postL, int postR, int midL, int midR, map<int, int> &mpL, map<int, int> &mpR)
{
if (postL > postR)
return 0;
int root = post[postR];
int index = 0;
for (index = midL; index <= midR; index++)
{
if (mid[index] == post[postR])
break;
}
int numLeft = index - midL;
int left = 1 + sub(post, mid, postL, postL + numLeft - 1, midL, index - 1, mpL, mpR);
int right = 1 + sub(post, mid, postL + numLeft, postR - 1, index + 1, midR, mpL, mpR);
mpL[root] = left;
mpR[root] = right;
return max(left, right);
}
int main()
{
map<int, int> mpL;
map<int, int> mpR;
int n = 0;
cin >> n;
string inorder;
string postorder;
cin >> inorder;
cin >> postorder;
sub(postorder, inorder, 0, n - 1, 0, n - 1, mpL, mpR);
int ans = 0;
for (auto i : mpL)
{
auto p = i.first;
int right = mpR[p];
ans = max(ans, 1 + right + i.second);
}
cout << ans;
return 0;
}