답안 #857228

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
857228 2023-10-05T15:33:00 Z aykhn 바이오칩 (IZhO12_biochips) C++14
0 / 100
2000 ms 14196 KB
#include <bits/stdc++.h>
 
// author : aykhn
 
using namespace std;
typedef long long ll;
 
#define pb push_back
#define ins insert
#define mpr make_pair
#define all(v) v.begin(), v.end()
#define bpc __builtin_popcount
#define pii pair<int, int>
#define pll pair<ll, ll>
#define fi first
#define se second
#define int ll
#define infll 0x3F3F3F3F3F3F3F3F
#define inf 0x3F3F3F3F
 
const int MXN = 2e5 + 5;
const int MXM = 5e2 + 5;
 
int n, m, r;
vector<int> adj[MXN];
int p[MXN], c[MXN];
int dp[MXN][MXM];
 
void dfs(int a)
{
    for (int v : adj[a]) dfs(v);
    int n1 = (int)adj[a].size();
    vector<vector<int>> dp1(n1 + 5, vector<int> (MXM, 0));
    for (int i = 1; i <= n1; i++)
    {
        int v = adj[a][i - 1];
        for (int j = 0; j <= m; j++)
        {
            for (int k = 0; k <= j; k++)
            {
                dp1[i][j] = max(dp1[i][j], dp1[i - 1][j - k] + dp[v][k]);
            }
        }
    }
    cout << dp1[n1][1] << endl;
    // max(c[a], dp1[n1][1]);
    //for (int i = 2; i <= m; i++) dp[a][i] = dp1[n1][i];
}
 
signed main()
{
    cin >> n >> m;
    for (int i = 1; i <= n; i++)
    {
        cin >> p[i] >> c[i];
        if (!p[i])
        {
            r = i;
            continue;
        }
        adj[p[i]].pb(i);
    }
    dfs(r);
    cout << dp[r][m] << '\n';
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 8540 KB Output isn't correct
2 Incorrect 1 ms 8540 KB Output isn't correct
3 Incorrect 2 ms 8796 KB Output isn't correct
4 Incorrect 38 ms 8820 KB Output isn't correct
5 Incorrect 55 ms 8796 KB Output isn't correct
6 Incorrect 73 ms 9044 KB Output isn't correct
7 Execution timed out 2005 ms 14196 KB Time limit exceeded
8 Execution timed out 2029 ms 13464 KB Time limit exceeded
9 Execution timed out 2017 ms 12664 KB Time limit exceeded
10 Execution timed out 2013 ms 13088 KB Time limit exceeded