답안 #35911

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
35911 2017-12-02T10:57:46 Z szawinis Chase (CEOI17_chase) C++14
0 / 100
466 ms 488500 KB
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
const int N = 1e5+1, V = 101;
const ll INF = 1e16;

int n, lim, a[N];
ll ans, s[N], dp[N][V][2][2]; // vertex, cnt, dir = down, up, last
vector<int> g[N];

void dfs(int u, int p) {
	ll mx[V][2][2];
	s[u] -= a[p];
	dp[u][0][0][0] = 0;
	dp[u][0][1][0] = 0;
	if(!p) dp[u][1][0][1] = mx[1][0][1] = s[u];
	dp[u][1][1][1] = mx[1][1][1] = s[u];
	ans = max(s[u] + a[p], ans);

	for(int x = 0; x <= lim; x++)
		for(int i = 0; i < 2; i++)
			for(int j = 0; j < 2; j++) mx[x][i][j] = 0;

	for(int v: g[u]) if(v != p) {
		dfs(v, u);
		for(int x = 0; x <= lim; x++) {
			ans = max(max(dp[v][x][0][0], dp[v][x][0][1]) + max(mx[lim-x][1][0], mx[lim-x][1][1] + a[v]), ans);
			ans = max(max(mx[lim-x][0][0], mx[lim-x][0][1]) + max(dp[v][x][1][0], dp[v][x][1][1] + a[u]), ans);
			ll res[2][2] = {
				{
					max(dp[v][x][0][0], dp[v][x][0][1]),
					(x > 0 ? max(dp[v][x-1][0][0], dp[v][x-1][0][1]) + s[u]: -INF) // a[v] - a[v] cancel
				},
				{
					max(dp[v][x][1][0], dp[v][x][1][1] + a[u]),
					(x > 0 ? max(dp[v][x-1][1][0], dp[v][x-1][1][1] + a[u]) + s[u] - a[v] : -INF)
				}
			};
			for(int i = 0; i < 2; i++) for(int j = 0; j < 2; j++) {
				dp[u][x][i][j] = max(res[i][j], dp[u][x][i][j]);
				if(dp[u][x][i][j] < 0) dp[u][x][i][j] = -INF;
				// cout << u << ' ' << x << ' ' << i << ' ' << j << ' ' << dp[u][x][i][j] << endl;
			}

			mx[x][0][0] = max(dp[u][x][0][0], mx[x][0][0]);
			mx[x][0][1] = max(dp[u][x][0][1] + a[p], mx[x][0][1]);
			mx[x][1][0] = max(dp[u][x][1][0], mx[x][1][0]);
			mx[x][1][1] = max(dp[u][x][1][1] + a[p], mx[x][1][1]);
		}
	}
}
// dp excludes parent, mx doesn't

int main() {
	scanf("%d %d", &n, &lim);
	for(int i = 1; i <= n; i++) scanf("%d", a+i);
	for(int i = 1, u, v; i < n; i++) {
		scanf("%d %d", &u, &v);
		g[u].push_back(v);
		g[v].push_back(u);
		s[u] += a[v];
		s[v] += a[u];
	}
	for(int v = 0; v <= n; v++)
		for(int x = 0; x <= lim; x++)
			for(int i = 0; i < 2; i++) for(int j = 0; j < 2; j++) dp[v][x][i][j] = -INF;
	dfs(1, 0);
	ans = 0;
	for(int i = 0; i < 2; i++) for(int j = 0; j < 2; j++) ans = max(dp[1][lim][i][j], ans);
	cout << ans;
}

Compilation message

chase.cpp: In function 'int main()':
chase.cpp:55:26: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  scanf("%d %d", &n, &lim);
                          ^
chase.cpp:56:46: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  for(int i = 1; i <= n; i++) scanf("%d", a+i);
                                              ^
chase.cpp:58:25: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   scanf("%d %d", &u, &v);
                         ^
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 321160 KB Output is correct
2 Incorrect 0 ms 321160 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 321160 KB Output is correct
2 Incorrect 0 ms 321160 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 466 ms 488500 KB Output is correct
2 Correct 429 ms 487608 KB Output is correct
3 Incorrect 259 ms 324876 KB Output isn't correct
4 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 321160 KB Output is correct
2 Incorrect 0 ms 321160 KB Output isn't correct
3 Halted 0 ms 0 KB -