# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
941890 | LonlyR | Hard route (IZhO17_road) | C++17 | 734 ms | 229892 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#define int long long
#define ii pair<int,int>
#define ff first
#define ss second
using namespace std;
const int maxn = 5e5 + 5;
int n;
ii res, dp[maxn];
vector<int> adj[maxn];
inline ii upd(ii a, int x, int y)
{
if (a.ff < x)
a = {x, y};
else if (a.ff == x)
a.ss += y;
return a;
}
void dfs(int x = 1, int p = 1)
{
dp[x].ss = 1;
for (int i : adj[x]) if (i != p)
{
dfs(i, x);
dp[x] = upd(dp[x], dp[i].ff + 1, dp[i].ss);
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |