#include <bits/stdc++.h>
#define sz(z) ( (int)z.size() )
#define in cin
#define out cout
using namespace std;
const int mod = 1000000007;
int n,sol = 0;
bool discard(vector<int> &v) {
bool eliminated = false;
for (int i = 0; i + 1 < sz(v); i++) {
for (int j = i + 1; j < sz(v); j++) {
if (v[i] == v[j]) {
swap(v[j] , v[(int)v.size() - 1]);
v.pop_back();
swap(v[i] , v[(int)v.size() - 1]);
v.pop_back();
eliminated = true;
}
}
}
return eliminated;
}
void back(int round, vector<vector<int>> v, bool eliminated) {
int mround = round % 3;
if ( v[0].empty() && v[1].empty() && v[2].empty() ) {
sol++;
return;
}
if (mround == 0 && !eliminated) {
return;
}
if (mround == 0) eliminated = false;
int l = mround, r = (mround + 1) % 3;
if (v[l].empty() ) {
back(round + 1 , v , eliminated);
} else {
for (int i = 0; i < v[l].size(); i++) {
vector<vector<int>> newv = {v[0] , v[1] , v[2]};
int x = newv[l][i];
swap(newv[l][i] , newv[l][(int)newv[l].size() - 1]);
newv[l].pop_back();
newv[r].push_back(x);
int newEliminated = max(discard(newv[r]) , eliminated);
back(round + 1, newv, newEliminated);
}
}
// cout << "\n";
}
int main() {
int t;
in >> n >> t;
while (t--) {
vector<vector<int>> v(3);
for (int i = 0; i < 3; i++) {
for (int j = 0; j < 2 * n; j++) {
int x;
in >> x;
v[i].push_back(x);
}
}
sol = 0;
for (int i = 0; i < 3; i++) discard(v[i]);
back(0 , v , 1);
// cout << "\n";
out << sol % mod << "\n";
}
return 0;
}
Compilation message
fishing.cpp: In function 'void back(int, std::vector<std::vector<int> >, bool)':
fishing.cpp:48:27: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
48 | for (int i = 0; i < v[l].size(); i++) {
| ~~^~~~~~~~~~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
29 ms |
204 KB |
Output is correct |
2 |
Execution timed out |
2068 ms |
332 KB |
Time limit exceeded |
3 |
Execution timed out |
2092 ms |
324 KB |
Time limit exceeded |
4 |
Execution timed out |
2082 ms |
324 KB |
Time limit exceeded |
5 |
Execution timed out |
2086 ms |
460 KB |
Time limit exceeded |
6 |
Execution timed out |
2085 ms |
588 KB |
Time limit exceeded |
7 |
Execution timed out |
2085 ms |
588 KB |
Time limit exceeded |
8 |
Execution timed out |
2078 ms |
716 KB |
Time limit exceeded |
9 |
Execution timed out |
2091 ms |
844 KB |
Time limit exceeded |
10 |
Execution timed out |
2085 ms |
972 KB |
Time limit exceeded |