제출 #913950

#제출 시각아이디문제언어결과실행 시간메모리
913950daoquanglinh2007Biochips (IZhO12_biochips)C++17
0 / 100
4 ms6744 KiB
#include <bits/stdc++.h> using namespace std; const int NM = 2e5, MM = 500, inf = 1e9; int N, M, root, p[NM+5], x[NM+5], timer = 0, tin[NM+5], tout[NM+5], tour[NM+5]; vector <int> son[NM+5]; int dp[NM+5][MM+5]; void dfs_euler_tour(int u){ tin[u] = ++timer; tour[timer] = u; for (int v : son[u]){ dfs_euler_tour(v); } tout[u] = timer; } int main(){ freopen("BIOCHIPS.inp", "r", stdin); freopen("BIOCHIPS.out", "w", stdout); ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); cin >> N >> M; for (int i = 1; i <= N; i++){ cin >> p[i] >> x[i]; if (p[i] == 0) root = i; son[p[i]].push_back(i); } dfs_euler_tour(root); for (int i = 1; i <= M; i++) dp[N+1][i] = -inf; for (int i = N; i >= 1; i--){ int u = tour[i]; for (int j = 1; j <= M; j++) dp[i][j] = max(dp[tout[u]][j-1]+x[u], dp[i+1][j]); } cout << dp[1][M]; return 0; }

컴파일 시 표준 에러 (stderr) 메시지

biochips.cpp: In function 'int main()':
biochips.cpp:20:9: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   20 |  freopen("BIOCHIPS.inp", "r", stdin);
      |  ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~
biochips.cpp:21:9: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   21 |  freopen("BIOCHIPS.out", "w", stdout);
      |  ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...