# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
909073 | lighton | Amusement Park (CEOI19_amusementpark) | C++17 | 3111 ms | 162168 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#define forf(i,a,b) for(int i = a; i<=b; i++)
#define all(v) v.begin(),v.end()
using namespace std;
typedef long long ll;
int N,M;
pair<int,int> edge[100001];
ll mod1 = 1000000000000000007;
ll mod2 = 1000000000000000009;
ll mod3 = 998244353;
vector<int> perm;
unordered_set<ll> s1,s2;
int main(){
scanf("%d %d" , &N , &M);
forf(i,1,M){
scanf("%d %d" , &edge[i].first,&edge[i].second);
}
forf(i,1,N) perm.push_back(i);
ll ans = 0;
do{
ll hash1 = 0; //hash2 = 0;
ll cnt = 0;
forf(i,1,M){
hash1 *= 2; //hash2 *= 2;
if(perm[edge[i].first-1] > perm[edge[i].second-1]){
hash1++; //hash2++;
cnt++;
}
hash1 %= mod1;
}
if(s1.find(hash1) == s1.end()){
if(s1.find(hash1) == s1.end()) s1.insert(hash1);
//if(s2.find(hash2) == s2.end()) s2.insert(hash2);
ans += cnt;
ans %= mod3;
}
} while((next_permutation(all(perm))));
printf("%d" , 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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |