이 제출은 이전 버전의 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, changes = 1;
cin >> n >> m >> k;
vector <int> color(n), g[n], used(n), permutation(k);
set <int> colorUsed;
function <void(int, int)> dfs=[&](int v, int cur) {
if(cur >= changes) {
ans++;
}
if(cur == permutation.size() - 1) return;
used[v] = 1;
for(auto u : g[v] ) {
if(!used[u] && color[u] == permutation[cur+1]) dfs(u, cur + 1);
}
used[v]=0;
};
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);
}
vector <int> prev;
for(int i = 0; i < k; i ++) permutation[i] = i + 1;
do{
/*if(prev.size() > 0) {
for(int i = 0; i < permutation.size(); i ++) {
if(prev[i] != permutation[i]) {
changes = i;
break;
}
}
changes = max(changes, 1LL);
}*/
for(int i = 0; i < n; i ++) {
if(color[i] == permutation[0]) dfs(i, 0);
}
//prev = permutation;
} while(next_permutation(permutation.begin(), permutation.end()));
cout << ans;
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
paths.cpp: In lambda function:
paths.cpp:19:10: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
19 | if(cur == permutation.size() - 1) return;
| ~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
# | 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... |