# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
990892 | 2024-05-31T17:45:36 Z | ToniB | "The Lyuboyn" code (IZhO19_lyuboyn) | C++17 | 35 ms | 6488 KB |
#include <bits/stdc++.h> using namespace std; int n, k, t; string s; int toInt(string s) { int ret = 0; for (int i = 0; i < s.length(); ++i) { ret <<= 1; ret += (s[i] == '1'); } return ret; } string toStr(int x) { string ret = ""; for (int i = n - 1; i >= 0; --i) { if (x & 1 << i) ret += '1'; else ret += '0'; } return ret; } vector<int> prufer(int lvl) { if (lvl == 1) return {0, 1}; vector<int> ret = prufer(lvl - 1); int sz = (int)ret.size(); for (int i = sz - 1; i >= 0; --i) ret.push_back(ret[i] | (1 << (lvl - 1))); return ret; } vector<int> gen(int lvl) { if (lvl == k + 1) { vector<int> ret = prufer(lvl); int cur = (1 << lvl) - 1; for (int i = 1; i < (int)ret.size(); i += 2) { ret[i] ^= cur; } return ret; } vector<int> sub = gen(lvl - 1); vector<int> ret = sub; int cur = 0; for (int i = lvl - 1; i >= lvl - k; --i) cur |= 1 << i; for (int x : sub) { ret.push_back(x ^ cur); } return ret; } int main(){ cin >> n >> k >> t >> s; vector<int> ans = prufer(n); int xr = toInt(s); for (int x : ans) { string cur = toStr(x ^ xr ^ ans[0]); cout << cur << "\n"; } return 0; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 344 KB | The output is neither -1 nor the length of the answer |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 348 KB | Expected integer, but "0000" found |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 604 KB | Expected integer, but "0000000000000" found |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 34 ms | 6336 KB | Expected integer, but "000000000000000000" found |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 348 KB | Expected integer, but "0000000" found |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 35 ms | 6488 KB | Expected integer, but "010101010011010100" found |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 34 ms | 6336 KB | Expected integer, but "000000000000000000" found |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 18 ms | 3284 KB | Expected integer, but "01011001010101101" found |
2 | Halted | 0 ms | 0 KB | - |