#include <vector>
#include <algorithm>
using namespace std;
vector<int> ans[921];
void init() {
if (ans[1].empty()) {
int cur = 0;
for (int i=1; i<=7; i++) {
for (int j=i+1; j<=8; j++) {
for (int k=j+1; k<=9; k++) {
for (int l=k+1; l<=10; l++) {
for (int m=l+1; m<=11; m++) {
for (int n=m+1; n<=12; n++) ans[++cur] = {i, j, k, l, m, n};
}
}
}
}
}
}
}
int encode(int n, int x, int y) {
init();
for (int i : ans[x]) {
if (find(ans[y].begin(), ans[y].end(), i) == ans[y].end()) return i;
}
}
#include <vector>
#include <algorithm>
using namespace std;
vector<int> ans[921];
void init() {
if (ans[1].empty()) {
int cur = 0;
for (int i=1; i<=7; i++) {
for (int j=i+1; j<=8; j++) {
for (int k=j+1; k<=9; k++) {
for (int l=k+1; l<=10; l++) {
for (int m=l+1; m<=11; m++) {
for (int n=m+1; n<=12; n++) ans[++cur] = {i, j, k, l, m, n};
}
}
}
}
}
}
}
int decode(int n, int q, int h) {
return find(ans[q].begin(), ans[q].end(), h) != ans[q].end();
}
Compilation message
encoder.cpp: In function 'int encode(int, int, int)':
encoder.cpp:29:1: warning: control reaches end of non-void function [-Wreturn-type]
29 | }
| ^
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
2165 ms |
24472 KB |
wrong answer |
2 |
Incorrect |
2161 ms |
24576 KB |
wrong answer |