# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
998967 | THXuan | 9월 (APIO24_september) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "september.h"
#include <bits/stdc++.h>
#define INF 1e18
using namespace std;
typedef long long ll;
vector<int>adj[800005];
bool visited[800005];
int v = 0;
void dfs(int s, int e){
if(visited[s]) return;
visited[s] = true;
++v;
for(auto u : adj[s]){
if(u==e) continue;
dfs(u, s);
}
}
int solve(int N, int M, vector<int> F, vector<vector<int>>S) {
for(int i =1; i < N;i++){
adj[i].push_back(F[i]);
adj[F[i]].push_back(i);
}
int ans = 0;
for(int i =0;i<N-1;i++){
for(int j =0;j<M;j++)dfs(S[j][i]);
ans += !--v;
}
return ans;
}