# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
996266 | chandu33 | Paths (BOI18_paths) | C++17 | 3088 ms | 9436 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
vector<int> adj[100001];
vector<int> colors(100001, -1);
ll ans = 0;
void dfs(int node, vector<bool> &visited, set<int> &pathColors) {
visited[node] = true;
pathColors.insert(colors[node]);
for (auto &child : adj[node]) {
if (!visited[child] && pathColors.find(colors[child]) == pathColors.end()) {
ans++;
dfs(child, visited, pathColors);
}
}
visited[node] = false;
pathColors.erase(colors[node]);
}
int main() {
int N, M, K;
scanf("%d %d %d", &N, &M, &K);
for (int i = 0; i < N; i++) {
scanf("%d", &colors[i]);
}
for (int i = 0; i < M; i++) {
int U, V;
scanf("%d %d", &U, &V);
--U; --V;
adj[U].push_back(V);
adj[V].push_back(U);
}
vector<bool> visited(N, false);
set<int> pathColors;
for (int i = 0; i < N; i++) {
if (!visited[i]) {
dfs(i, visited, pathColors);
}
}
printf("%lld\n", ans);
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |