P1090 [NOIP2004 提高组] 合并果子 / [USACO06NOV] Fence Repair G BST题解

P1090 [NOIP2004 提高组] 合并果子 / [USACO06NOV] Fence Repair G
这是一道贪心算法的题目,用BST维护有序性,每次取最小值,并删除,取两次合并为新的一堆,进行n-1次,这样就合并为一堆了统计过程每一次的大小。
指针版

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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
#include<bits/stdc++.h>
using namespace std;
struct BSTNode{
    int key;
    BSTNode* left;
    BSTNode* right;
    BSTNode* parent;
    BSTNode(long long value,BSTNode* p,BSTNode* l,BSTNode* r):
        key(value),parent(p),left(l),right(r){
        }
};
BSTNode* Search(BSTNode* root,int key)
{
    if (root==NULL||root->key==key)
    {
        return root;
    }
    if (key<root->key)
    {
        return Search(root->left,key);
    }
    else
    {
        return Search(root->right,key);
    }
}
BSTNode* Maximum(BSTNode* root)
{
    if (root==NULL)
    {
        return root;
    }
    while(root->right!=NULL)
    {
        root=root->right;
    }
    return root;
}
BSTNode* Minimum(BSTNode* root)
{
    if (root==NULL)
    {
        return root;
    }
    while(root->left!=NULL)
    {
        root=root->left;
    }
    return root;
}
BSTNode* Predecessor(BSTNode* root)
{
    if (root->left!=NULL)
    {
        return Maximum(root->left);
    }
    BSTNode* y=root->parent;
    while(y!=NULL&&root==y->left)
    {
        root=y;
        y=y->parent;
    }
    return y;
}
BSTNode* Successor(BSTNode* root)
{
    if(root->right!=NULL)
    {
        return Minimum(root->right);
    }
    BSTNode* y=root->parent;
    while(y!=NULL&&root==y->right)
    {
        root=y;
        y=y->parent;
    }
    return y;
}
void Insert(BSTNode* &root,int key)
{
    BSTNode* z=NULL;
    if ((z=new BSTNode(key,NULL,NULL,NULL))==NULL)
    {
        return ;
    }
    BSTNode* y=NULL;
    BSTNode* x=root;
    while(x!=NULL)
    {
        y=x;
        if (z->key<x->key)
        {
            x=x->left;
        }
        else
        {
            x=x->right;
        }
    }
    z->parent=y;
    if (y==NULL)
    {
        root=z;
    }
    else if(z->key<y->key)
    {
        y->left=z;
    }
    else
    {
        y->right=z;
    }
}
void Remove(BSTNode* &root,int key)
{
    BSTNode *z;
    z=Search(root,key);
    if (z!=NULL)
    {
        BSTNode* x=NULL;
        BSTNode* y=NULL;
        if (z->left==NULL||z->right==NULL)
        {
            y=z;
        }
        else
        {
            y=Successor(z);
        }
        if (y->left!=NULL)
        {
            x=y->left;
        }
        else
        {
            x=y->right;
        }
        if (x!=NULL)
        {
            x->parent=y->parent;
        }
        if (y->parent==NULL)
        {
            root=x;
        }
        else if(y==y->parent->left)
        {
            y->parent->left=x;
        }
        else
        {
            y->parent->right=x;
        }
        if (y!=z)
        {
            z->key=y->key;
        }
        delete y;
    }
}
int main()
{
    int n,ans=0,cur;
    cin>>n;
    BSTNode* root=NULL;
    for (int i=1;i<=n;i++)
    {
        int x;
        cin>>x;
        Insert(root,x);
    }
    BSTNode* z1;
    BSTNode* z2;
    for (int i=1;i<n;i++)
    {
        z1=Minimum(root);
        cur=z1->key;
        Remove(root,z1->key);
        z2=Minimum(root);
        cur+=z2->key;
        Remove(root,z2->key);
        ans+=cur;
        Insert(root,cur);
    }
    cout<<ans<<endl;
}

数组版

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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
#include<iostream>
using namespace std;
struct node{
    int data;//结点的内容
    int left;//左子树
    int right;//右子树
    int cnt;
} Bst[20100];
int root=0;
int tot=0;
//插入x的值
void insert(int &r,int x)
{
    if (r==0)
    {
        tot++;
        r=tot;
        Bst[tot].data=x;
        Bst[tot].left=0;
        Bst[tot].right=0;
        Bst[tot].cnt=1;
    }
    else
    {
        if(x>Bst[r].data)
        {
            insert(Bst[r].right,x);
        }
        else if(x<Bst[r].data)
        {
            insert(Bst[r].left,x);
        }
        else
        {
            Bst[r].cnt++;
        }
    }
}
int Search(int r,int val)
{
    if (r==0) return 0;
    if(Bst[r].data>val)
    {
        return Search(Bst[r].left,val);
    }
    else if(Bst[r].data==val)
    {
        return r;
    }
    else
    {
        return Search(Bst[r].right,val);
    }
}
//查询r子树的最小值的结点编号
int findMin(int r)
{
    if (r==0)
    {
        return 0;  
    }
    else
    {
        int ans=r;
        while(Bst[r].left!=0)
        {
            ans=Bst[r].left;
            r=Bst[r].left;
        }
        return ans;
    }
}
//查询r子树的最大值的结点编号
int findMax(int r)
{
    if (r==0)
    {
        return 0;  
    }
    else
    {
        int ans=r;
        while(Bst[r].right!=0)
        {
            ans=Bst[r].right;
            r=Bst[r].right;
        }
        return ans;
    }
}
//删除算法这个算法不是最好可以优化
void Delete(int &r,int val)
{
    if (r==0)
    {
        return ;   
    }
    else if(Bst[r].data==val)
    {
        if(Bst[r].left==0&&Bst[r].right==0)
        {
            r=0;
            return ;
        }
        else if(Bst[r].left==0) //仅有右子树
        {
            int y,v;
            y=findMin(Bst[r].right);//右子树查最小值
            v=Bst[y].data;
            Bst[r].data=v;
            Bst[r].cnt=Bst[y].cnt;
            Delete(Bst[r].right,v);
        }
        else if(Bst[r].right==0)//仅有左子树
        {
            int y,v;
            y=findMax(Bst[r].left);//右子树查最大值
            v=Bst[y].data;
            Bst[r].data=v;
            Bst[r].cnt=Bst[y].cnt;
            Delete(Bst[r].left,v);
        }
        else  //有两个子树
        {
            int y,v;
            y=findMin(Bst[r].right);//右子树查最小值
            v=Bst[y].data;
            Bst[r].data=Bst[y].data;
            Bst[r].cnt=Bst[y].cnt;
            Delete(Bst[r].right,v);            
        }
    }
    else if(Bst[r].data>val)
    {
        Delete(Bst[r].left,val);
    }
    else
    {
        Delete(Bst[r].right,val);
    }
}
void DElete(int r,int val)
{
    int x;
    x=Search(r,val);
    Bst[x].cnt--;
    if (Bst[x].cnt==0)
    {
        Delete(r,val);
    }
}
int a[10010];
void build(int l,int r)
{
    if (r-l<1) return ;
    int m;
    m=(l+r)/2;
    insert(root,a[m]);
    build(l,m);
    build(m+1,r);
}
int main()
{
    //freopen("P1090_2.in","r",stdin);
    int n;
    cin>>n;
    for (int i=0;i<n;i++)
    {
        cin>>a[i];
    }
    build(0,n);
    int ans=0;
    for (int i=1;i<n;i++)
    {
        int x,y;
        x=Bst[findMin(root)].data;
        DElete(root,x);
        y=Bst[findMin(root)].data;
        DElete(root,y);
        insert(root,x+y);      
        ans=ans+x+y;
    }
    cout<<ans<<endl;
}  
posted @   心悟&&星际  阅读(62)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· TypeScript + Deepseek 打造卜卦网站:技术与玄学的结合
· 阿里巴巴 QwQ-32B真的超越了 DeepSeek R-1吗?
· 如何调用 DeepSeek 的自然语言处理 API 接口并集成到在线客服系统
· 【译】Visual Studio 中新的强大生产力特性
· 2025年我用 Compose 写了一个 Todo App
点击右上角即可分享
微信分享提示