Submission #673333

# Submission time Handle Problem Language Result Execution time Memory
673333 2022-12-20T08:44:15 Z smartmonky Biochips (IZhO12_biochips) C++14
10 / 100
248 ms 290980 KB
#include <bits/stdc++.h>

#define ff first
#define ss second
#define pb push_back
#define all(x) x.begin(), x.end()
#define rall(x) x.rbegin(), x.rend()
#define int long long

using namespace std;

void fp(string name){freopen((name+".in").c_str(),"r",stdin); freopen((name+".out").c_str(),"w",stdout);}
const int N = 200005;
vector <int> g[N];
int coast[N], dp[500][N];
int m;
void dfs(int v){
	for(auto to : g[v]){
		dfs(to);
		for(int i = m; i > 0; i--){
			dp[i][v] = max(dp[i - 1][v] + dp[1][to], dp[i][v]);
		}
	}
	dp[1][v] = max(dp[1][v], coast[v]);
}
main(){
	ios_base::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);
	//fp("game");
	int n;
	cin >> n >> m;
	int ind = -1;
	for(int i = 0; i < n; i++){
		int a, b;
		cin >> a >> b;
		coast[i + 1] = b;
		if(a == 0){
			ind = i + 1;
			continue;
		}
		g[a].pb(i + 1);
	}
	dfs(ind);
	cout << dp[m][ind];
}

Compilation message

biochips.cpp:26:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   26 | main(){
      | ^~~~
biochips.cpp: In function 'void fp(std::string)':
biochips.cpp:12:29: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   12 | void fp(string name){freopen((name+".in").c_str(),"r",stdin); freopen((name+".out").c_str(),"w",stdout);}
      |                      ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
biochips.cpp:12:70: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   12 | void fp(string name){freopen((name+".in").c_str(),"r",stdin); freopen((name+".out").c_str(),"w",stdout);}
      |                                                               ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Incorrect 3 ms 4948 KB Output isn't correct
2 Correct 2 ms 4948 KB Output is correct
3 Incorrect 3 ms 5076 KB Output isn't correct
4 Incorrect 8 ms 9900 KB Output isn't correct
5 Incorrect 11 ms 11732 KB Output isn't correct
6 Incorrect 14 ms 13780 KB Output isn't correct
7 Incorrect 239 ms 282200 KB Output isn't correct
8 Incorrect 248 ms 290980 KB Output isn't correct
9 Incorrect 123 ms 16724 KB Output isn't correct
10 Incorrect 152 ms 17572 KB Output isn't correct