# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
483039 | ntabc05101 | Chase (CEOI17_chase) | C++14 | 379 ms | 254804 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int maxn = 1e5+10, maxk = 110;
int n, k;
ll dp[maxn][maxk], dp2[maxn][maxk], ant[maxn][maxk], ans, vis[maxn], vet[maxn];
vector <int> graph[maxn];
void dfs(int u, int f = 0)
{
for(int v: graph[u])
{
if(v == f) continue;
dfs(v, u);
for(int i = 1 ; i <= k ; ++i)
{
ll val = max(dp[v][i-1] + vis[v] - vet[u], dp[v][i]);
if(val > dp[u][i]) dp2[u][i] = dp[u][i], dp[u][i] = val;
else if(val > dp2[u][i]) dp2[u][i] = val;
}
}
}
void rotate(int u, int f = 0)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |