# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
203797 | dndhk | Amusement Park (CEOI19_amusementpark) | C++14 | 3073 ms | 33472 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define pb push_back
using namespace std;
typedef pair<int, int> pii;
typedef long long ll;
const int MAX_N = 30;
const ll MOD = 998244353;
int N, M;
vector<int> gp[MAX_N+1];
vector<pii> edge;
int c[MAX_N+1], idx[MAX_N+1];
ll ans;
vector<ll> vt;
set<ll> st;
void chk(){
for(int i=1; i<=N; i++) while(!gp[i].empty()) gp[i].pop_back();
ll now = 0;
for(int i=0; i<M; i++){
now = (now << 1);
int u = edge[i].first, v = edge[i].second;
if(idx[u]<idx[v]){
int t = u; u = v; v = t;
now+=1LL;
}
gp[u].pb(v);
}
vt.pb(now);
}
int per[MAX_N+1];
int main(){
scanf("%d%d", &N, &M);
for(int i=0; i<M; i++){
int x, y; scanf("%d%d", &x, &y); edge.pb({x, y});
}
for(int i=0; i<N; i++){
per[i] = i+1;
}
while(1){
for(int i=0; i<N; i++) idx[per[i]] = i;
chk();
if(!next_permutation(per, per+N)) break;
}
sort(vt.begin(), vt.end());
vt.erase(unique(vt.begin(), vt.end()), vt.end());
for(int i=0; i<vt.size(); i++){
for(int j=0; j<M; j++){
ans = (ans + (vt[i]%2LL)) % MOD;
vt[i]/=2LL;
}
}
cout<<ans;
return 0;
}
컴파일 시 표준 에러 (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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |