| Task: | Kortit II |
| Sender: | PMak |
| Submission time: | 2024-11-05 22:32:34 +0200 |
| Language: | C++ (C++17) |
| Status: | READY |
| Result: | 3 |
| group | verdict | score |
|---|---|---|
| #1 | ACCEPTED | 3 |
| #2 | TIME LIMIT EXCEEDED | 0 |
| #3 | TIME LIMIT EXCEEDED | 0 |
| #4 | TIME LIMIT EXCEEDED | 0 |
| #5 | TIME LIMIT EXCEEDED | 0 |
| test | verdict | time | group | |
|---|---|---|---|---|
| #1 | ACCEPTED | 0.00 s | 1, 2, 3, 4, 5 | details |
| #2 | TIME LIMIT EXCEEDED | -- | 2, 3, 4, 5 | details |
| #3 | TIME LIMIT EXCEEDED | -- | 3, 4, 5 | details |
| #4 | TIME LIMIT EXCEEDED | -- | 4, 5 | details |
| #5 | TIME LIMIT EXCEEDED | -- | 5 | details |
| #6 | TIME LIMIT EXCEEDED | -- | 5 | details |
Compiler report
input/code.cpp:26:16: warning: use of 'auto' in parameter declaration only available with '-std=c++20' or '-fconcepts'
26 | void print(set<auto> v) {
| ^~~~
input/code.cpp:31:19: warning: use of 'auto' in parameter declaration only available with '-std=c++20' or '-fconcepts'
31 | void print(vector<auto> v) {
| ^~~~Code
#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
using namespace __gnu_pbds;
typedef tree<int,null_type,std::less<int>,rb_tree_tag, tree_order_statistics_node_update> indexed_set;
#define F0R(n) for (int i=0; i<n; i++)
#define FOR(from, to) for (int i = from; i < to; i++)
#define R0F(n) for (int i = n; i>=0; --i)
#define ROF(from, to) for (int i = from; i >= to; --i)
#define ll long long
#define mod (int) (1e9 + 7)
#define vi vector<int>
#define vll vector<ll>
#define vc vector<char>
#define pii pair<int, int>
#define pci pair<char, int>
#define pll pair<ll, ll>
#define YES cout << "YES\n";
#define NO cout << "NO\n";
#define all(x) x.begin(), x.end()
#define rall(x) x.rbegin(), x.rend()
using namespace std;
void print(set<auto> v) {
for (auto it = v.begin(); it != v.end(); ++it)
cout << *it << " ";
cout << "\n";
}
void print(vector<auto> v) {
for (auto it = v.begin(); it != v.end(); ++it)
cout << *it << " ";
cout << "\n";
}
int A, B;
pii score(vi& p2) {
int sca=0, scb=0, n = p2.size();
F0R (n) {
if (p2[i]<i+1)
++sca;
else if (p2[i]>i+1)
++scb;
}
return {sca, scb};
}
vi fact_mod(2001);
void build() {
fact_mod[0] = 1;
FOR (1, 2001)
(fact_mod[i] = fact_mod[i-1]*i) %= mod;
}
int nCr(int n, int k) {
if (k <= 0) return 1;
int ans = 1;
(ans = fact_mod[n]/(fact_mod[k]*fact_mod[n-k]) ) %= mod;
return ans;
}
set<vi> st;
int solve(vi p2, int n, int a, int b) {
int ans = 0;
auto [sca, scb] = score(p2);
if (sca == A && scb == B) {
st.insert(p2);
++ans;
}
if (a > 0 && b > 0) {
F0R (n-1) {
if (p2[i] == n-i || p2[n-i-1]==i+1)
continue;
swap(p2[i], p2[n-i-1]);
ans += solve(p2, n, a-1, b-1);
// (ans += solve(p2, n, a-1, b-1)) %= mod;
swap(p2[i], p2[n-i-1]);
}
}
if (a > 0) {
F0R (n-1) {
if (p2[i] == n || p2[n]==i+1)
continue;
swap(p2[i], p2[n-1]);
ans += solve(p2, n, a-1, b);
// (ans += solve(p2, n, a-1, b)) %= mod;
swap(p2[i], p2[n-1]);
}
}
if (b > 0) {
FOR (1, n) {
if (p2[i-1] == i+1 || p2[i]==i)
continue;
swap(p2[i-1], p2[i]);
ans += solve(p2, n, a, b-1);
// (ans += solve(p2, n, a, b-1)) %= mod;
swap(p2[i-1], p2[i]);
}
}
return ans % mod;
}
void soln() {
int n, x, y;
cin >> n >> x >> y;
A = x; B = y;
if ((A==0 && B!=0) || (A!=0 && B==0)) {
cout << "0\n";
return;
}
int new_n = n-A-B;
if (new_n < 0) {
cout << "0\n";
return;
}
vi p2(A+B);
iota(p2.begin(), p2.end(), 1);
solve(p2, A+B, A, B);
int ans = st.size();
// printf("ans1=%d\n", ans);
ans *= nCr(n, n-A-B);
ans %= mod;
// printf("ans2=%d\n", ans);
ans *= fact_mod[n];
ans %= mod;
cout << ans << "\n";
// printf("ans=%d, set size=%d\n", ans, st.size());
/*for (auto v : st) {
auto [sca, scb] = score(v);
cout << sca << " " << scb << endl;
print(v);
}*/
st.clear();
}
int main() {
// ios_base::sync_with_stdio(false);
// cin.tie(NULL);
build();
int tc;
cin >> tc;
while (tc--) soln();
return 0;
}
Test details
Test 1
Group: 1, 2, 3, 4, 5
Verdict: ACCEPTED
| input |
|---|
| 54 4 4 0 3 1 3 3 2 2 4 0 4 ... |
| correct output |
|---|
| 0 0 0 0 0 ... |
| user output |
|---|
| 0 0 0 0 0 ... |
Test 2
Group: 2, 3, 4, 5
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 284 6 1 0 5 0 2 7 1 5 7 7 5 ... |
| correct output |
|---|
| 0 0 35280 0 36720 ... |
| user output |
|---|
| (empty) |
Test 3
Group: 3, 4, 5
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 841 19 3 12 19 19 13 19 7 13 20 11 15 ... |
| correct output |
|---|
| 40291066 0 0 0 0 ... |
| user output |
|---|
| (empty) |
Test 4
Group: 4, 5
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 1000 15 12 6 7 1 6 44 4 26 6 6 5 ... |
| correct output |
|---|
| 0 5040 494558320 0 340694548 ... |
| user output |
|---|
| (empty) |
Test 5
Group: 5
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 1000 892 638 599 966 429 655 1353 576 1140 1403 381 910 ... |
| correct output |
|---|
| 0 0 0 249098285 0 ... |
| user output |
|---|
| (empty) |
Test 6
Group: 5
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 1000 2000 1107 508 2000 1372 249 2000 588 65 2000 1739 78 ... |
| correct output |
|---|
| 750840601 678722180 744501884 159164549 868115056 ... |
| user output |
|---|
| (empty) |
