| Task: | Kortit II |
| Sender: | NoelMatero |
| Submission time: | 2024-11-07 20:39:32 +0200 |
| Language: | C++ (C++11) |
| Status: | READY |
| Result: | 0 |
| group | verdict | score |
|---|---|---|
| #1 | RUNTIME ERROR | 0 |
| #2 | RUNTIME ERROR | 0 |
| #3 | RUNTIME ERROR | 0 |
| #4 | RUNTIME ERROR | 0 |
| #5 | RUNTIME ERROR | 0 |
| test | verdict | time | group | |
|---|---|---|---|---|
| #1 | RUNTIME ERROR | 0.39 s | 1, 2, 3, 4, 5 | details |
| #2 | RUNTIME ERROR | 0.37 s | 2, 3, 4, 5 | details |
| #3 | RUNTIME ERROR | 0.39 s | 3, 4, 5 | details |
| #4 | RUNTIME ERROR | 0.38 s | 4, 5 | details |
| #5 | RUNTIME ERROR | 0.39 s | 5 | details |
| #6 | RUNTIME ERROR | 0.39 s | 5 | details |
Compiler report
input/code.cpp: In function 'll dp(int, int, int, int, const std::vector<int>&, std::vector<std::vector<std::vector<long long int> > >&)':
input/code.cpp:35:13: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
35 | if (pos == p1.size()) {
| ~~~~^~~~~~~~~~~~
input/code.cpp:42:27: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
42 | for (int num = 1; num <= p1.size(); num++) {
| ~~~~^~~~~~~~~~~~Code
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int MOD = 1e9 + 7;
const int MAX_N = 20;
int power(int base, int exp) {
int result = 1;
while (exp > 0) {
if (exp % 2 == 1) {
result = (1LL * result * base) % MOD;
}
base = (1LL * base * base) % MOD;
exp /= 2;
}
return result;
}
void precompute_factorials(vector<int>& factorial, vector<int>& inv_factorial, int n) {
factorial[0] = 1;
for (int i = 1; i <= n; ++i) {
factorial[i] = (1LL * factorial[i - 1] * i) % MOD;
}
inv_factorial[n] = power(factorial[n], MOD - 2);
for (int i = n - 1; i >= 0; --i) {
inv_factorial[i] = (1LL * inv_factorial[i + 1] * (i + 1)) % MOD;
}
}
ll dp(int mask, int pos, int a_remaining, int b_remaining, const vector<int>& p1, vector<vector<vector<ll>>>& memo) {
if (pos == p1.size()) {
return (a_remaining == 0 && b_remaining == 0) ? 1 : 0;
}
if (memo[mask][a_remaining][b_remaining] != -1)
return memo[mask][a_remaining][b_remaining];
ll res = 0;
for (int num = 1; num <= p1.size(); num++) {
int bit = num - 1;
if (!(mask & (1 << bit))) {
if (num < p1[pos]) {
if (a_remaining > 0)
res = (res + dp(mask | (1 << bit), pos + 1, a_remaining - 1, b_remaining, p1, memo)) % MOD;
}
else if (num > p1[pos]) {
if (b_remaining > 0)
res = (res + dp(mask | (1 << bit), pos + 1, a_remaining, b_remaining - 1, p1, memo)) % MOD;
}
else {
res = (res + dp(mask | (1 << bit), pos + 1, a_remaining, b_remaining, p1, memo)) % MOD;
}
}
}
return memo[mask][a_remaining][b_remaining] = res;
}
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
int n, a, b;
cin >> n >> a >> b;
vector<int> factorial(n + 1), inv_factorial(n + 1);
precompute_factorials(factorial, inv_factorial, n);
vector<int> p1(n);
for (int i = 0; i < n; i++) {
p1[i] = i + 1;
}
vector<vector<vector<ll>>> memo(1 << n, vector<vector<ll>>(n + 1, vector<ll>(n + 1, -1)));
ll answer = dp(0, 0, a, b, p1, memo);
cout << (answer * factorial[n]);
return 0;
}
/*
1 3 2 5 4
1 3 5 2 4
1 4 2 5 3
1 4 5 2 3
1 4 5 3 2
1 5 4 2 3
1 5 4 3 2
2 1 3 5 4
2 1 4 3 5
2 1 5 4 3
2 4 1 3 5
2 5 1 4 3
2 5 3 1 4
3 1 4 2 5
3 1 5 4 2
3 2 1 5 4
3 2 5 1 4
3 4 1 2 5
3 4 2 1 5
3 5 1 4 2
3 5 2 4 1
4 1 3 5 2
4 2 1 5 3
4 2 5 1 3
4 2 5 3 1
4 3 1 2 5
4 3 2 1 5
4 5 3 1 2
4 5 3 2 1
5 2 4 1 3
5 2 4 3 1
5 3 1 4 2
5 3 2 4 1
5 4 3 1 2
5 4 3 2 1
2 1 4 3
2 4 1 3
3 1 4 2
3 4 1 2
3 4 2 1
4 3 1 2
4 3 2 1
2 1 4 5 3
2 3 1 5 4
2 3 5 1 4
2 4 1 5 3
2 4 5 1 3
2 4 5 3 1
2 5 4 1 3
2 5 4 3 1
3 1 4 5 2
3 4 1 5 2
3 4 2 5 1
3 4 5 1 2
3 4 5 2 1
3 5 4 1 2
3 5 4 2 1
4 3 1 5 2
4 3 2 5 1
4 3 5 1 2
4 3 5 2 1
5 3 4 1 2
5 3 4 2 1
*/
Test details
Test 1
Group: 1, 2, 3, 4, 5
Verdict: RUNTIME ERROR
| input |
|---|
| 54 4 4 0 3 1 3 3 2 2 4 0 4 ... |
| correct output |
|---|
| 0 0 0 0 0 ... |
| user output |
|---|
| (empty) |
Test 2
Group: 2, 3, 4, 5
Verdict: RUNTIME ERROR
| 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: RUNTIME ERROR
| 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: RUNTIME ERROR
| 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: RUNTIME ERROR
| 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: RUNTIME ERROR
| input |
|---|
| 1000 2000 1107 508 2000 1372 249 2000 588 65 2000 1739 78 ... |
| correct output |
|---|
| 750840601 678722180 744501884 159164549 868115056 ... |
| user output |
|---|
| (empty) |
