# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
417162 | kai824 | Worst Reporter 4 (JOI21_worst_reporter4) | C++17 | 376 ms | 72132 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
//now ac: multiple trees
#include<bits/stdc++.h>
using namespace std;
#define int long long
#define mp make_pair
#define pii pair<int,int>
#define f first
#define s second
int rt[200005];//cycle root...
vector<int> sks[200005];
char vis[200005];
int a[200005],h[200005],c[200005];
vector<int> adjl[200005];
int delt[200005];
map<int,int> ss[200005];//slope trick things
map<int,int>::iterator it;
int nd;
void dfs(int node,int p=-1,bool r=false){
ss[node].clear();delt[node]=0;
for(int x:adjl[node]){
if(x==p)continue;
dfs(x,node);
}
nd=node;
for(int x:adjl[node]){
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |