Submission #471355

#TimeUsernameProblemLanguageResultExecution timeMemory
471355lovrotQuestion (Grader is different from the original contest) (CEOI14_question_grader)C++11
Compilation error
0 ms0 KiB
#include <bits/stdc++.h> using namespace std; bool breakb = false; vector<int> out; int m; void shuffle(int x, int pos, int par){ //cout << x << ' ' << pos << ' ' << par << "\n"; if(breakb) return; cout << x << ' ' << pos << "\n"; if(pos >= 12){ out.push_back(par); if(out.size() > m) breakb = true; return; } if(x) shuffle(x - 1, pos + 1, par ^ (1 << pos)); if(12 - pos > x) shuffle(x, pos + 1, par); } int encode(int n, int x, int y){ ios_base::sync_with_stdio(false); m = n; shuffle(6, 0, 0); for (int i = 0; i < 12; i++) if ((out[x] & (1 << i)) && (!(out[y] & (1 << i)))) return i+1; }
#include <bits/stdc++.h> using namespace std; bool breakb = false; vector<int> out; int m; void shuffle(int x, int pos, int par){ //cout << x << ' ' << pos << ' ' << par << "\n"; if(breakb) return; cout << x << ' ' << pos << "\n"; if(pos >= 12){ out.push_back(par); if(out.size() > m) breakb = true; return; } if(x) shuffle(x - 1, pos + 1, par ^ (1 << pos)); if(12 - pos > x) shuffle(x, pos + 1, par); } int encode(int n, int q, int h){ ios_base::sync_with_stdio(false); shuffle(6, 0, 0); m = n; if(out[q] & (1 << h - 1)) return 1; return 0; }

Compilation message (stderr)

encoder.cpp: In function 'void shuffle(int, int, int)':
encoder.cpp:18:17: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
   18 |   if(out.size() > m)
      |      ~~~~~~~~~~~^~~
encoder.cpp: In function 'int encode(int, int, int)':
encoder.cpp:41:1: warning: control reaches end of non-void function [-Wreturn-type]
   41 | }
      | ^

decoder.cpp: In function 'void shuffle(int, int, int)':
decoder.cpp:18:17: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
   18 |   if(out.size() > m)
      |      ~~~~~~~~~~~^~~
decoder.cpp: In function 'int encode(int, int, int)':
decoder.cpp:38:22: warning: suggest parentheses around '-' inside '<<' [-Wparentheses]
   38 |  if(out[q] & (1 << h - 1)) return 1;
      |                    ~~^~~
/usr/bin/ld: /tmp/cc9UUmm6.o: in function `main':
grader_decode.c:(.text.startup+0x22f): undefined reference to `decode(int, int, int)'
collect2: error: ld returned 1 exit status