# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
121012 | IOrtroiii | Paths (BOI18_paths) | C++14 | 357 ms | 33132 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
const int N = 100100;
const int K = 5;
int n, m, k;
int a[N];
vector<int> g[N];
ll f[N][1 << K];
int main() {
scanf("%d %d %d", &n, &m, &k);
for (int i = 1; i <= n; ++i) {
scanf("%d", a + i);
--a[i];
}
for (int i = 1; i <= m; ++i) {
int u, v;
scanf("%d %d", &u, &v);
g[u].push_back(v);
g[v].push_back(u);
}
for (int i = 1; i <= n; ++i) {
f[i][1 << a[i]] = 1ll;
}
ll ans = 0;
for (int mask = 1; mask < (1 << k); ++mask) {
for (int i = 1; i <= n; ++i) {
ans += f[i][mask];
for (int j : g[i]) {
if (!(mask & (1 << a[j]))) {
f[j][mask | (1 << a[j])] += f[i][mask];
}
}
}
}
printf("%lld\n", ans - n);
}
컴파일 시 표준 에러 (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... |