# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
169249 | arnold518 | Paths (BOI18_paths) | C++14 | 299 ms | 207156 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
const int MAXN = 1e5;
const int MAXK = 5;
int N, M, K, KK, A[MAXN+10];
vector<int> adj[MAXN+10], adj2[MAXN*40+10], revadj2[MAXN+10];
ll dp[MAXN+10], ans;
vector<int> S;
bool vis[MAXN*40+10];
void dfs(int now)
{
vis[now]=true;
for(int nxt : adj2[now])
{
if(vis[nxt]) continue;
dfs(nxt);
}
S.push_back(now);
}
int main()
{
int i, j, k;
scanf("%d%d%d", &N, &M, &K); KK=(1<<K);
for(i=1; i<=N; i++) scanf("%d", &A[i]), A[i]--;
for(i=1; i<=M; i++)
{
int u, v;
scanf("%d%d", &u, &v);
adj[u].push_back(v);
adj[v].push_back(u);
}
for(i=1; i<=N; i++) for(j=0; j<(1<<K); j++)
{
if((j&(1<<A[i]))==0) continue;
int now=(i<<K)+j;
for(auto to : adj[i])
{
if(j&(1<<A[to])) continue;
int nxt=(to<<K)+(j|(1<<A[to]));
adj2[now].push_back(nxt);
revadj2[nxt].push_back(now);
/*
printf("%d ", now>>K);
for(k=0; k<K; k++) printf("%d", (bool)(now&(1<<k)));
printf(" / ");
printf("%d ", nxt>>K);
for(k=0; k<K; k++) printf("%d", (bool)(nxt&(1<<k)));
printf("\n");*/
}
}
for(i=1; i<=N; i++) dfs((i<<K)+(1<<A[i]));
reverse(S.begin(), S.end());
for(auto now : S)
{
if(now==((now>>K)<<K)+(1<<A[now>>K])) dp[now]=1;
for(auto nxt : revadj2[now]) dp[now]+=dp[nxt];
ans+=dp[now];
}
ans-=N;
printf("%lld", ans);
}
컴파일 시 표준 에러 (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... |