# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1063032 | IdanRosen | Cat in a tree (BOI17_catinatree) | C++98 | 1079 ms | 16732 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef long double ld;
typedef pair<ll, ll> pii;
typedef pair<ll, ll> pll;
typedef pair<ld, ld> pld;
ll n, k;
vector<vector<ll> > adj;
struct dp_t {
// dp[i] the maximum ans for this subtree if every chosen node is at least d distance from the subtree root
// the condition dp[i] >= dp[i + 1] holds
deque<ll> dp;
ll max_ans() {
if (dp.empty()) return 0;
else return dp[0];
}
ll dp_at(ll depth) {
if (depth < dp.size()) return dp[depth];
else return 0;
}
ll sz() { return dp.size(); }
};
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |