답안 #716498

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
716498 2023-03-30T07:58:05 Z vjudge1 바이오칩 (IZhO12_biochips) C++17
0 / 100
67 ms 10204 KB
#include <algorithm>
#include <iostream>
#include <iomanip>
#include <bitset>
#include <cmath>
#include <queue>
#include <map>
#include <set>

using namespace std;
typedef long long ll;
struct segment{int l, r, id;
int size(){return r-l+1;}};
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
#define ent "\n"

const int maxn = 25e4 + 100;
const ll INF = (1ll<<61);
const int MOD = 1e9 + 7;
const int inf = (1<<30);
const int maxl = 20;
const int P = 31;

int n, m;
int a[maxn];
int dp[10001][101];
vector<int> g[maxn];

void dfs(int v){
    fill(dp[v] + 1, dp[v] + m + 1, -inf);
    for(int to: g[v]){
        dfs(to);
        for(int x = 0; x <= m; x++){
            for(int y = 0; y <= x; y++){
                dp[v][x] = max(dp[v][x], dp[v][x - y] + dp[to][y]);
            }
        }
    }
    dp[v][1] = max(dp[v][1], a[v]);
}

void test(){
    cin >> n >> m; int r;
    for(int i = 1; i <= n; i++){
        int p;
        cin >> p >> a[i];
        if(p == 0){
            r = i;
            break;
        }
        g[p].push_back(i);
    }
    dfs(r);
    cout << dp[r][m];
}

int main(){
    ios_base::sync_with_stdio(0); 
    cin.tie(0), cout.tie(0);
    int t; t = 1;
    while(t--) test();
}

Compilation message

biochips.cpp: In function 'void test()':
biochips.cpp:55:20: warning: 'r' may be used uninitialized in this function [-Wmaybe-uninitialized]
   55 |     cout << dp[r][m];
      |                    ^
# 결과 실행 시간 메모리 Grader output
1 Incorrect 6 ms 6100 KB Output isn't correct
2 Incorrect 6 ms 6100 KB Output isn't correct
3 Incorrect 5 ms 6100 KB Output isn't correct
4 Incorrect 15 ms 8812 KB Output isn't correct
5 Incorrect 16 ms 9280 KB Output isn't correct
6 Incorrect 67 ms 10204 KB Output isn't correct
7 Incorrect 13 ms 6972 KB Output isn't correct
8 Incorrect 53 ms 8996 KB Output isn't correct
9 Incorrect 7 ms 6140 KB Output isn't correct
10 Incorrect 6 ms 6228 KB Output isn't correct