Submission #794075

#TimeUsernameProblemLanguageResultExecution timeMemory
794075Valaki2Question (Grader is different from the original contest) (CEOI14_question_grader)C++14
0 / 100
1390 ms243232 KiB
#include <bits/stdc++.h> using namespace std; #define pb push_back vector<vector<int> > v; int encode (int n, int x, int y) { v.pb({}); vector<int> subset = {0, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0}; while(true) { v.pb(subset); if(subset[7] && subset[8] && subset[9] && subset[10] && subset[11] && subset[12]) { break; } /*int j = -1, cnt = 0; for(int i = 12; i >= 1; i--) { if(!subset[i]) { j = i; break; } cnt++; } for(; j >= 1; j--) { if(subset[j]) { subset[j] = false; for(int i = j + 1; i <= j + 1 + cnt; i++) { subset[i] = true; } for(int i = j + 1 + cnt + 1; i <= 12; i++) { subset[i] = false; } break; } }*/ next_permutation(subset.begin(), subset.end()); break; } return 1; for(int i = 1; i <= 12; i++) { if(v[x][i] == -1 && v[y][i] == 0) { return i; } } return -1; }
#include <bits/stdc++.h> using namespace std; #define pb push_back vector<vector<int> > w; int decode (int n, int q, int h) { return 1; w.pb({}); vector<int> subset = {0, -1, -1, -1, -1, -1, -1, 0, 0, 0, 0, 0, 0}; while(true) { w.pb(subset); if(subset[7] && subset[8] && subset[9] && subset[10] && subset[11] && subset[12]) { break; } /*int j = -1, cnt = 0; for(int i = 12; i >= 1; i--) { if(!subset[i]) { j = i; break; } cnt++; } for(; j >= 1; j--) { if(subset[j]) { subset[j] = false; for(int i = j + 1; i <= j + 1 + cnt; i++) { subset[i] = true; } for(int i = j + 1 + cnt + 1; i <= 12; i++) { subset[i] = false; } break; } }*/ next_permutation(subset.begin(), subset.end()); } return ((w[q][h] == -1) ? 1 : 0); }
#Verdict Execution timeMemoryGrader output
Fetching results...