답안 #827545

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
827545 2023-08-16T14:34:35 Z MasterTaster 바이오칩 (IZhO12_biochips) C++14
100 / 100
522 ms 412888 KB
#include <bits/stdc++.h>
 
#define ll long long
#define pii pair<int, int>
#define xx first
#define yy second
#define pb push_back
#define MAXN 200010
#define MAXM 510
#define MAXX 1000000010LL
 
using namespace std;
 
int n, m, p, w[MAXN], gde[MAXN], r[MAXN];
int dp[MAXN][MAXM];
bool bio[MAXN];
vector<int> g[MAXN], svi;
void dfs(int u)
{
	bio[u]=true;
 
	svi.pb(u);
	gde[u]=svi.size()-1;
	for (int i=0; i<=m; i++) dp[gde[u]][i]=-MAXX;
	dp[gde[u]][1]=w[u];
	dp[gde[u]][0]=0;
 
	for (auto v:g[u])
	{
		if (!bio[v])
			dfs(v);
	}
 
	r[u]=svi.size();
	///cout<<u<<":"<<endl;
	///for (int i=0; i<=m; i++) cout<<dp[u][i]<<" ";
	///cout<<endl;
}
 
int main(){
	cin>>n>>m;
 
	int koren=1;
	for (int i=1; i<=n; i++)
	{
		cin>>p>>w[i];
		if (p==0) { koren=i; continue; }
		g[p].pb(i); g[i].pb(p);
	}
 
	dfs(koren);
 
	//for (int i=0; i<svi.size(); i++) cout<<svi[i]<<" ";
	//cout<<endl;
 
	for (int i=svi.size()-1; i>=0; i--)
	{
		for (int j=0; j<=m; j++)
		{
			if (j==0) { dp[i][j]=0; continue; }
			if (i!=svi.size()-1) dp[i][j]=max(dp[i][j], dp[i+1][j]);
			//else dp[i][1]=w[svi[i]];
			if (r[svi[i]]<svi.size()) dp[i][j]=max(dp[i][j], dp[r[svi[i]]][j-1]+w[svi[i]]);
 
			//cout<<i<<" "<<j<<": "<<dp[i][j]<<endl;
		}
	}
	int ress=-1;
	for (int i=0; i<svi.size(); i++) ress=max(ress, dp[i][m]);
	cout<<ress;
	//cout<<dp[0][m];
}

Compilation message

biochips.cpp: In function 'int main()':
biochips.cpp:61:9: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   61 |    if (i!=svi.size()-1) dp[i][j]=max(dp[i][j], dp[i+1][j]);
      |        ~^~~~~~~~~~~~~~
biochips.cpp:63:17: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   63 |    if (r[svi[i]]<svi.size()) dp[i][j]=max(dp[i][j], dp[r[svi[i]]][j-1]+w[svi[i]]);
      |        ~~~~~~~~~^~~~~~~~~~~
biochips.cpp:69:17: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   69 |  for (int i=0; i<svi.size(); i++) ress=max(ress, dp[i][m]);
      |                ~^~~~~~~~~~~
# 결과 실행 시간 메모리 Grader output
1 Correct 2 ms 4948 KB Output is correct
2 Correct 3 ms 4948 KB Output is correct
3 Correct 2 ms 5204 KB Output is correct
4 Correct 15 ms 23176 KB Output is correct
5 Correct 18 ms 25504 KB Output is correct
6 Correct 19 ms 25536 KB Output is correct
7 Correct 362 ms 307628 KB Output is correct
8 Correct 343 ms 307588 KB Output is correct
9 Correct 465 ms 374048 KB Output is correct
10 Correct 522 ms 412888 KB Output is correct