# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
746475 | Sami_Massah | 경주 (Race) (IOI11_race) | C++17 | 482 ms | 84088 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const long long maxn = 2e5 + 12, mod = 998244353, inf = 1e9 + 12 ;
long long n, k, ans = maxn, h[maxn], sz[maxn], cost[maxn], U[maxn], V[maxn], dist[maxn];
int H2[maxn][2], L2[maxn];
vector <int> conn[maxn];
map <int, int> mp[maxn];
bitset <maxn> marked;
void dfs_set(int u){
marked[u] = 1;
sz[u] = 1;
for(int e: conn[u]){
int v = u ^ U[e] ^ V[e];
if(!marked[v]){
h[v] = h[u] + 1;
dist[v] = dist[u] + cost[e];
dfs_set(v);
sz[u] += sz[v];
}
}
}
void dfs(int u, int p = -1){
marked[u] = 1;
for(int e: conn[u]){
int v = u ^ U[e] ^ V[e];
if(!marked[v]){
dfs(v, u);
if(mp[v].find(k + dist[u]) != mp[v].end())
# | 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... |