#include<bits/stdc++.h>
using namespace std;
void DBG() { cerr << "]\n"; }
template<class H, class... T> void DBG(H h, T... t) {
cerr << h; if(sizeof...(t)) cerr << ", ";
DBG(t...);
}
#ifdef LOCAL
#define dbg(...) cerr << "[" << #__VA_ARGS__ << "]: [", DBG(__VA_ARGS__)
#else
#define dbg(...) 0
#endif // LOCAL
#define FOR(i,a,b) for(int i = (a) ; i<(b) ; i++)
#define F0R(i,a) FOR(i,0,a)
#define ROF(i,a,b) for(int i = (b)-1 ; i>=(a) ; i--)
#define R0F(i,a) ROF(i,0,a)
#define each(e,a) for(auto &e : (a))
#define sz(v) (int)(v).size()
#define all(v) (v).begin(),(v).end()
#define rall(v) (v).rbegin(),(v).rend()
#define pb push_back
#define tcT template<class T
#define nl "\n"
using ll = long long;
using vi = vector<int>;
using pi = pair<int,int>;
using str = string;
tcT> using V = vector<T>;
tcT> using pqg = priority_queue<T,vector<T>,greater<T>>;
void setIO(string NAME = "") {
cin.tie(0)->sync_with_stdio(0);
if(sz(NAME)) {
freopen((NAME + ".inp").c_str(),"r",stdin);
freopen((NAME + ".out").c_str(),"w",stdout);
}
}
tcT> bool ckmin(T&a, const T&b) {
return b < a ? a=b,1 : 0; }
tcT> bool ckmax(T&a, const T&b) {
return b > a ? a=b,1 : 0; }
const int MOD = 1e9 + 7;
const int MX = 2e5+5;
int dp[MX][505], val2[MX], tin[MX], tout[MX], tt;
int N, M, rt, val[MX];
vi adj[MX];
void dfs(int u) {
++tt;
tin[u] = tt;
val2[tt] = val[u];
dp[tt][1] = val[u];
each(v, adj[u]) dfs(v);
tout[tin[u]] = tt;
}
void solve() {
cin >> N >> M;
FOR(i,1,N+1) {
int par;
cin >> par >> val[i];
if(par == 0) rt = i;
else adj[par].pb(i);
}
dfs(rt);
int ans = 0;
for(int i = tt; i>=1; i--) {
for(int j = 1; j<=M; j++) {
if(i + 1 <= tt) ckmax(dp[i][j], dp[i+1][j]);
if(tout[i]+1 <= tt) ckmax(dp[i][j], dp[tout[i]+1][j-1] + val2[i]);
if(j == M) ckmax(ans, dp[i][j]);
}
}
cout << ans << nl;
}
int main() {
setIO();
int t=1;
//cin>>t;
while(t-->0) {
solve();
}
return 0;
}
Compilation message
biochips.cpp: In function 'void setIO(std::string)':
biochips.cpp:37:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
37 | freopen((NAME + ".inp").c_str(),"r",stdin);
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
biochips.cpp:38:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
38 | freopen((NAME + ".out").c_str(),"w",stdout);
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
4948 KB |
Output is correct |
2 |
Correct |
2 ms |
4948 KB |
Output is correct |
3 |
Correct |
3 ms |
5204 KB |
Output is correct |
4 |
Correct |
14 ms |
22868 KB |
Output is correct |
5 |
Correct |
16 ms |
24996 KB |
Output is correct |
6 |
Correct |
17 ms |
25008 KB |
Output is correct |
7 |
Correct |
212 ms |
299856 KB |
Output is correct |
8 |
Correct |
231 ms |
299860 KB |
Output is correct |
9 |
Correct |
274 ms |
364704 KB |
Output is correct |
10 |
Correct |
361 ms |
402508 KB |
Output is correct |