# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
297266 | junseo | 바이오칩 (IZhO12_biochips) | C++17 | 566 ms | 411960 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define eb emplace_back
#define fi first
#define se second
#define all(v) v.begin(), v.end()
#define ends ' '
#define endl '\n'
#define fastio ios_base::sync_with_stdio(0), cin.tie(0)
using namespace std;
typedef long long ll;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
const int maxn = 2e5 + 10;
const int maxm = 505;
int n, m, T = 0;
int p[maxn], t[maxn], d[maxn][maxm];
vector<int> root, adj[maxn];
vector<pii> v[maxn];
inline void rmax(int& r, int x) { r = max(r, x); }
void dfs(int u) {
int in = ++T;
for(auto v : adj[u]) dfs(v);
int out = T;
v[out].eb(in, t[u]);
}
int main(void) {
fastio;
cin >> n >> m;
int rootCnt = 0;
for(int i = 1; i <= n; ++i) {
cin >> p[i] >> t[i];
if(p[i] == 0) rootCnt = 0;
if(!p[i]) root.eb(i);
else adj[p[i]].eb(i);
}
// assert(rootCnt == 1);
// assert(root.size() == 1);
for(auto& r : root) dfs(r);
for(int i = 1; i <= m; ++i) d[0][i] = INT_MIN;
for(int i = 1; i <= n; ++i) {
for(int j = 0; j <= m; ++j) d[i][j] = d[i - 1][j];
for(int j = 1; j <= m; ++j) {
for(auto [l, w] : v[i]) rmax(d[i][j], d[l - 1][j - 1] + w);
}
}
cout << d[n][m];
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |