• 2022 CCPC桂林 G. Group Homework


    题意:

    思路:

    有时间再补,先插眼。

    时间复杂度: O ( n ) O(n) On

    int n, m;
    int h[N], e[N], ne[N], idx;
    int s[N];
    multiset<int> q[N];
    multiset<int> d[N];
    int ans;
    vector<int> tmp;
    int self[N];
    int jinian[N];
    
    void add(int a, int b) {
    	e[idx] = b;
    	ne[idx] = h[a], h[a] = idx++;
    }
    
    void dfs1(int u, int fa) {
    	for (int i = h[u], cnt; ~i; i = ne[i]) {
    		int j = e[i];
    		if (j == fa)
    			continue;
    
    		dfs1(j, u);
    
    		cnt = s[j];
    		if (!q[j].empty())
    			cnt += *(--q[j].end());
    
    		q[u].insert(cnt);
    		if (q[u].size() > 4)
    			q[u].erase(q[u].begin());
    
    	}
    }
    
    void dfs2(int u, int fa) {
    
    	for (int i = h[u], cnt; ~i; i = ne[i]) {
    		int j = e[i];
    		if (j == fa)
    			continue;
    
    		dfs2(j, u);
    
    		tmp.clear();
    		for (auto k : q[j])
    			tmp.push_back(k);
    		reverse(all(tmp));
    		cnt = s[j];
    		for (int k = 0; k < 2 && k < (int)tmp.size(); k++)
    			cnt += tmp[k];
    		self[j] = cnt;
    
    		if (!d[j].empty())
    			self[j] = max(self[j], *(--d[j].end()));
    
    		d[u].insert(self[j]);
    		if (d[u].size() > 2)
    			d[u].erase(d[u].begin());
    	}
    }
    
    void dfs3(int u, int fa) {
    	for (int i = h[u], cnt; ~i; i = ne[i]) {
    		int j = e[i];
    		if (j == fa)
    			continue;
    
    		cnt = s[j];
    		if (!q[j].empty())
    			cnt += *(--q[j].end());
    
    		auto t = q[u].find(cnt);
    		if (t != q[u].end())
    			q[u].erase(t);
    
    		int cha = s[u];
    		if (!q[u].empty())
    			cha += *(--q[u].end());
    
    		q[j].insert(cha);
    		if (q[j].size() > 4)
    			q[j].erase(q[j].begin());
    
    		q[u].insert(cnt);
    		if (q[u].size() > 4)
    			q[u].erase(q[u].begin());
    
    		dfs3(j, u);
    		jinian[j] = cnt;
    	}
    }
    
    void dfs4(int u, int fa) {
    
    	for (int i = h[u], cnt; ~i; i = ne[i]) {
    		int j = e[i];
    		if (j == fa)
    			continue;
    
    		dfs4(j, u);
    
    		tmp.clear();
    		for (auto k : q[u])
    			tmp.push_back(k);
    		reverse(all(tmp));
    		cnt = 0;
    		for (int k = 0; k < 3 && k < (int)tmp.size(); k++)
    			cnt += tmp[k];
    		ans = max(ans, cnt + s[u]);
    
    		if (tmp.size() == 4)
    			ans = max(ans, cnt + tmp[3]);
    	}
    }
    
    void dfs5(int u, int fa, int pre) {
    
    	for (int i = h[u], cnt; ~i; i = ne[i]) {
    		int j = e[i];
    		if (j == fa)
    			continue;
    
    		auto t = d[u].find(self[j]);
    		if (t != d[u].end())
    			d[u].erase(t);
    
    		cnt = pre;
    		if (!d[u].empty())
    			cnt = max(cnt, *(--d[u].end()));
    
    		t = q[u].find(jinian[j]);
    		if (t != q[u].end())
    			q[u].erase(t);
    
    		tmp.clear();
    		for (auto k : q[u])
    			tmp.push_back(k);
    		reverse(all(tmp));
    		int wu = s[u];
    		for (int k = 0; k < 2 && k < (int)tmp.size(); k++)
    			wu += tmp[k];
    		cnt = max(cnt, wu);
    
    		ans = max(ans, cnt + self[j]);
    
    		q[u].insert(jinian[j]);
    		if (q[u].size() > 4)
    			q[u].erase(q[u].begin());
    
    
    		d[u].insert(self[j]);
    		if (d[u].size() > 2)
    			d[u].erase(d[u].begin());
    
    		dfs5(j, u, cnt);
    	}
    }
    
    signed main() {
    	IOS
    	sf(n);
    	for (int i = 1; i <= n; i++) {
    		h[i] = -1;
    		sf(s[i]);
    	}
    
    	for (int i = 1, a, b; i < n; i++)
    		sf2(a, b), add(a, b), add(b, a);
    
    	if (n == 1) {
    		pfn(0);
    		return 0;
    	}
    	dfs1(1, 0);
    	dfs2(1, 0);
    	dfs3(1, 0);
    	dfs4(1, 0);
    	dfs5(1, 0, 0);
    
    	pfn(ans);
    	return 0;
    }
    
    • 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
  • 相关阅读:
    电商网站运营的 7 大关键指标
    这份阿里强推的并发编程知识点笔记,将是你拿大厂offer的突破口
    靶机 DC_1
    LeetCode //C - 114. Flatten Binary Tree to Linked List
    算法笔记-第九章-二叉查找树
    (一)高并发压力测试调优篇——MYSQL数据库的调优
    分割数组的最大值问题
    2022/09/03 day03:搭建私有git服务器与IDEA中使用Git
    从面试官角度分析:面试功能测试工程师主要考察哪些能力?
    如何用Python和NLTK有效地总结文本
  • 原文地址:https://blog.csdn.net/m0_51499184/article/details/127624137