# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
312446 | Trickster | 바이오칩 (IZhO12_biochips) | C++14 | 699 ms | 12280 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <algorithm>
#include <string.h>
#include <iostream>
#include <stdio.h>
#include <vector>
#include <queue>
#include <cmath>
#include <set>
#include <map>
using namespace std;
#define N 200010
#define ff first
#define ss second
#define ll long long
#define pb push_back
#define mod 1000000007
#define pii pair <ll, ll>
#define sz(a) int(a.size())
#pragma GCC target ("avx2")
#pragma GCC optimization ("O3")
#pragma GCC optimization ("unroll-loops")
ll bigmod(ll a,ll e) {if(e==0)return 1;ll x=bigmod(a*a%mod,e>>1);return e&1?x*a%mod:x;}
int n, m;
int x, TIM;
vector <int> E[N];
int id[N], go[N], v[N], dp[5][N], cost[N];
void dfs(int nd)
{
int tm = ++TIM;
id[tm] = nd;
for(auto i: E[nd]) dfs(i);
go[tm] = TIM;
}
int main()
{
cin >> n >> m;
int root = 0;
for(int i = 1; i <= n; i++) {
cin >> x >> v[i];
if(x) E[x].pb(i);
else root = i;
}
dfs(root);
for(int i = 1; i <= n; i++) dp[0][i] = v[id[i]];
int tp = 0;
for(int i = 2; i <= m; i++) {
tp = !tp;
cost[n+1] = -1e9;
for(int h = n; h >= 1; h--) cost[h] = max(cost[h+1], dp[!tp][h]);
for(int h = n; h >= 1; h--) dp[tp][h] = cost[go[h]+1] + v[id[h]];
}
int ans = 0;
for(int i = 1; i <= n; i++) ans = max(ans, dp[tp][i]);
cout << ans;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |