이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
// Bismi Allah
#include "bits/stdc++.h"
using namespace std;
#define int long long
signed main () {
ios::sync_with_stdio(0);
cin.tie(0); cout.tie(0);
int n, m, k, ans = 0;
cin >> n >> m >> k;
vector <int> color(n), g[n], used(n);
set <int> colorUsed;
function <void(int)> dfs=[&](int v) {
//if(colorUsed.size() > 1)
ans ++;
used[v] = 1;
colorUsed.insert(color[v]);
for(auto u : g[v] ) {
if(!used[u] && colorUsed.count(color[u]) == 0) dfs(u);
}
used[v]=0;
colorUsed.erase(color[v]);
};
for(int i = 0; i < n; i ++) cin >> color[i];
for(int i = 0; i < m; i ++) {
int u, v;
cin >> u >> v;
u --, v --;
g[u].push_back(v);
g[v].push_back(u);
}
//cout << "\n";
/*for(int firstColor = 1; firstColor <= k; firstColor ++) {
for(int i = 0; i < n; i ++) {
if(color[i] == firstColor) {
assert(colorUsed.size() == 0);
//cout << i << " " << color[i] << "\n";
assert(count(used.begin(), used.end(), 1) == 0);
dfs(i);
for(int j = 0; j < used.size(); j ++) used[j]=0;
//colorUsed.clear();
}
}
}
cout << ans;*/
for(int i = 0; i < n; i ++) {
dfs(i);
}
cout << ans - n;
return 0;
}
# | 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... |