Submission #90144

# Submission time Handle Problem Language Result Execution time Memory
90144 2018-12-20T15:05:45 Z antimirage Biochips (IZhO12_biochips) C++14
0 / 100
2 ms 380 KB
#include <bits/stdc++.h>

#define fr first
#define sc second
#define mk make_pair
#define pb emplace_back
#define all(s) s.begin(), s.end()

using namespace std;

const int N = 2e5 + 5;

int n, m, x, y, root, a[N];

long long dp[N][505], tin[N], tiktak, inf = 1e9 + 7, pref[N][505];

vector < vector <int> > g;

vector < pair <int, int> > vec;

void dfs (int v)
{
	if (g[v].empty() )
		tin[v] = ++tiktak;
		
		
	for (auto to : g[v]){
		dfs(to);
		
		if (!tin[v])
			tin[v] = tin[to];
		else
			tin[v] = min( tin[v], tin[to] ); 
	}
		
	vec.pb( mk( tiktak, v ) );
}
long long ans;

main() 
{
	cin >> n >> m;
	g.resize(n + 1);
	
	for (int i = 1; i < n; i++){
		scanf("%d%d", &x, &a[i]);
		if (x == 0)
			root = i;
		else
			g[x].pb(i);
	}
	dfs(root);
	
	sort( all(vec) );
	
	for (int i = 0; i <= n; i++)
		for (int j = 0; j <= m; j++)
			dp[i][j] = -inf;
			
	dp[0][0] = 0;
	
	pref[0][0] = 0;
	
	for (auto it : vec)
	{	
		//cout << it.sc << " --> " << it.fr << endl;
		for (int j = 1; j <= m; j++)
			dp[it.fr][j] = pref[ tin[it.sc] - 1 ][j - 1] + a[it.sc];
			
		for (int j = 1; j <= m; j++)
			pref[it.fr][j] = max( dp[it.fr][j], max( pref[it.fr - 1][j], pref[it.fr][j] ) );
	}
	for (int i = 1; i <= n; i++)
		ans = max( ans, dp[i][m] );
		
	cout << ans << endl;
}


Compilation message

biochips.cpp:40:6: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
 main() 
      ^
biochips.cpp: In function 'int main()':
biochips.cpp:46:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   scanf("%d%d", &x, &a[i]);
   ~~~~~^~~~~~~~~~~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 380 KB Output isn't correct
2 Halted 0 ms 0 KB -