# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
538190 | new_acc | Paths (BOI18_paths) | C++14 | 512 ms | 56672 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#define fi first
#define se second
#define pitem item*
using namespace std;
typedef long long ll;
typedef vector<int> vi;
typedef vector<ll> vl;
const int N=3e5+10;
ll dp[1<<5][N];
vi graf[N];
int k[N];
void solve(){
int n,m,kk;
cin>>n>>m>>kk;
for(int i=1;i<=n;i++) cin>>k[i];
for(int i=1,a,b,c;i<=m;i++){
cin>>a>>b;
graf[a].push_back(b),graf[b].push_back(a);
}
ll res=0;
for(int i=1;i<(1<<kk);i++){
for(int wsk=1;wsk<=n;wsk++){
if((1<<(k[wsk]-1))&i){
if(__builtin_popcount(i)==1) dp[i][wsk]=1;
else for(auto u:graf[wsk]) dp[i][wsk]+=dp[i-(1<<(k[wsk]-1))][u];
}
res+=dp[i][wsk];
}
}
cout<<res-n<<"\n";
}
int main(){
solve();
}
컴파일 시 표준 에러 (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... |