답안 #48420

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
48420 2018-05-13T00:59:10 Z aleksami Dostavljač (COCI18_dostavljac) C++14
0 / 140
235 ms 2512 KB
#include <bits/stdc++.h>

using namespace std;
#define MAXN 505
int a[MAXN];
int dp[MAXN][MAXN][2];
vector <int> g[MAXN];
int n,m;

void dfs(int v,int p)
{
	for(auto x:g[v])
	{
		if(x==p)continue;
		dfs(x,v);
		for(int i = m; i >= 0; i--)
		{
			for(int j = 0; j <= i; j++)
			{
				if(i-j-1>=0)dp[v][i][0]=max(dp[v][i][0],dp[v][j][1]+max(dp[x][i-j-1][0],dp[x][i-j-1][1]));
				if(i-j-2>=0)dp[v][i][1]=max(dp[v][i][1],dp[v][j][1]+dp[x][i-j-2][1]);
			}
		}
	}
	for(int i = m; i >= 0; i--)
	{
		dp[v][i][0]=max(dp[v][i][0],max(dp[v][i-1][0],dp[v][i-1][1])+a[v]);
		dp[v][i][1]=max(dp[v][i][1],dp[v][i-1][1]+a[v]);
	}
}

int main()
{
	cin >> n >> m;
	for(int i = 1; i <= n; i++)
	{
		cin >> a[i];
	}
	for(int i = 0; i < n-1; i++)
	{
		int u,v;
		cin >> u >> v;
		g[u].push_back(v);
		g[v].push_back(u);
	}
	dfs(1,0);
	cout << max(dp[1][m][0],dp[1][m][1]);
	return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 376 KB Output isn't correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 484 KB Output isn't correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 3 ms 776 KB Output isn't correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 776 KB Output isn't correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 9 ms 908 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 4 ms 1080 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 66 ms 1340 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 24 ms 1724 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 123 ms 2088 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 235 ms 2512 KB Output isn't correct
2 Halted 0 ms 0 KB -