이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define forn(i,n) for (int i=0; i<n; ++i)
void solve() {
int n,m; cin>>n>>m;
if (n>5) return;
vector<int>s;
forn(i,2*n) s.push_back(i+1);
int steps=0;
int ans=0;
//next_permutation(s.begin(), s.end());
int need=1;
bitset<6> a[5];
forn(i,2*n) need*=i+1;
while (need--) {
++steps;
int paiu=1;
forn(i,5) a[i].reset();
forn(i,2*n) {
if (a[i%m][s[i]%n]) paiu=0;
a[i%m].set(s[i]%n);
}
ans+=paiu;
next_permutation(s.begin(), s.end());
}
cout<<ans;
//cout<<" !"<<steps;
}
int32_t main() {
solve();
return 0;
}
# | 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... |