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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
#include<bits/stdc++.h>
#define fi first
#define se second
using namespace std;
const int N=2e5;
const long long INF=1e18L+7;
vector<vector<pair<int,int>>> poss={
	{{0,1}},
	{{0,2},{2,1}},

	{{1,0},{3,1},{3,1}},
	{{1,2},{2,0},{3,1},{3,1}},
	{{1,0},{3,1},{3,2},{2,1}},
	{{1,0},{3,2},{3,1},{2,1}},
	{{1,0},{3,2},{3,2},{2,1},{2,1}},

	{{3,0},{3,1}},
	{{3,1},{3,0}},
	{{3,1},{3,2},{2,0}},
	{{3,2},{3,1},{2,0}},
	{{3,0},{3,2},{2,1}},
	{{3,2},{3,0},{2,1}},
	{{3,2},{3,2},{2,0},{2,1}},
	{{3,2},{3,2},{2,1},{2,0}},

	{{0,3},{3,1}},
	{{0,2},{2,3},{3,1}},
	{{0,3},{3,2},{2,1}},
};
vector<pair<int,long long>> e[N+10];
priority_queue<pair<long long,int>> st[4][4];
int siz[4][4];
bool bad[4][4][N+10];
vector<tuple<int,int,int>> tmp;
long long dp[N+10][5];
long long t[N+10][5];
void norm(int &x,int m)
{
	if(x==1)
		x=m;
	else if(x==2)
		x=3-m;
	return;
}
void pop(int y1,int y2)
{
	if(!bad[y1][y2][st[y1][y2].top().se])
		siz[y1][y2]--;
	else
		bad[y1][y2][st[y1][y2].top().se]=false;
	st[y1][y2].pop();
	return;
}
void rem(int y1,int y2,int v)
{
	if(!bad[y1][y2][v])
	{
		bad[y1][y2][v]=true;
		siz[y1][y2]--;
	}
	return;
}
void push(int y1,int y2,long long c,int v)
{
	siz[y1][y2]++;
	if(bad[y1][y2][v])
		bad[y1][y2][v]=false;
	else
		st[y1][y2].push({c,v});
	return;
}
void rep(int y1,int y2)
{
	while(st[y1][y2].size()>2 && bad[y1][y2][st[y1][y2].top().se])
		pop(y1,y2);
	return;
}
void solve(int x,int k)
{
	dp[x][k]=-INF;
	if(k>0 && e[x].empty())
		return;

	long long ans=0;
	for(int i=0;i<=3;i++)
	{
		for(int j=0;j<=3;j++)
		{
			while(st[i][j].size()>2)
				pop(i,j);
		}
	}

	auto val=[&](int y1,int y2)
	{
		rep(y1,y2);
		return st[y1][y2].top().fi;
	};
	auto add=[&](int v,int y)
	{
		ans+=t[v][y];
		for(int i=0;i<=3;i++)
			push(y,i,max(-INF,t[v][i]-t[v][y]),v);
		return;
	};
	auto erase=[&](int v,int y)
	{
		ans-=t[v][y];
		for(int i=0;i<=3;i++)
			rem(y,i,v);
		return;
	};
	tmp.clear();
	auto mvtmp=[&](int y1,int y2)
	{
		rep(y1,y2);
		int v=st[y1][y2].top().se;
		erase(v,y1);
		ans+=t[v][y2];
		tmp.emplace_back(v,y1,y2);
		return;
	};
	auto bck=[&]()
	{
		for(auto [v,y1,y2]:tmp)
		{
			ans-=t[v][y2];
			add(v,y1);
		}
		tmp.clear();
		return;
	};
	auto mkmv=[&](int y1,int y2)
	{
		rep(y1,y2);
		int v=st[y1][y2].top().se;
		erase(v,y1);
		add(v,y2);
		return;
	};
	auto chck=[&](vector<pair<int,int>> &ord)
	{
		int sz[4];
		for(int i=0;i<=3;i++)
			sz[i]=siz[i][i]-2;
		for(auto [a,b]:ord)
		{
			sz[a]--;
			if(sz[a]<0)
				return false;
		}
		return true;
	};
	auto op=[&](int m)
	{
		long long bst=-INF;
		vector<pair<int,int>> g;
		for(auto ord:poss)
		{
			for(auto &v:ord)
			{
				norm(v.fi,m);
				norm(v.se,m);
			}
			if(!chck(ord))
				continue;
			for(auto [y1,y2]:ord)
				mvtmp(y1,y2);
			if(ans>bst)
			{
				bst=ans;
				g=ord;
			}
			bck();
		}
		if(g.empty())
			ans=-INF;
		for(auto [y1,y2]:g)
			mkmv(y1,y2);
		return;
	};

	// start allowing only 0 and 3 arbitrarily
	bool pairity=false;
	for(auto [v,c]:e[x])
	{
		if(t[v][0]>t[v][3])
			add(v,0);
		else
		{
			add(v,3);
			pairity=!pairity;
		}
	}
	if(k==2)
		pairity=!pairity;
	if(pairity)
	{
		if(siz[3][3]==2 || val(0,3)>val(3,0))
			mkmv(0,3);
		else
			mkmv(3,0);
	}

	// include [1] or [2] if k demands it
	if(k==1)
		op(1);
	if(k==3)
		op(2);

	dp[x][k]=max(dp[x][k],ans);

	// try oder sizes of [1] and [2]
	while(ans>-INF)
	{
		op(1);
		op(2);
		dp[x][k]=max(dp[x][k],ans);
	}

	return;
}
void dfs(int x,int par=0)
{
	for(size_t i=0;i<e[x].size();i++)
	{
		if(e[x][i].fi==par)
		{
			swap(e[x][i],e[x].back());
			e[x].pop_back();
		}
	}

	for(auto [v,c]:e[x])
	{
		dfs(v,x);
		t[v][0]=max(dp[v][0],dp[v][3]+c);
		t[v][1]=dp[v][0]+c;
		t[v][2]=dp[v][2]+c;
		t[v][3]=dp[v][1]+c;
	}

	for(int k=0;k<=3;k++)
		solve(x,k);
	return;
}
int main()
{
	ios_base::sync_with_stdio(false);
	cin.tie(NULL);
	cout.tie(NULL);
	for(int i=0;i<=3;i++)
	{
		for(int j=0;j<=3;j++)
		{
			st[i][j].push({-INF,-1});
			st[i][j].push({-INF,-2});
			siz[i][j]=2;
		}
	}
	int n;
	cin>>n;
	for(int i=1;i<n;i++)
	{
		int a,b,c;
		cin>>a>>b>>c;
		e[a].emplace_back(b,c);
		e[b].emplace_back(a,c);
	}
	dfs(1);
	cout<<dp[1][0]<<"\n";
	return 0;
}