# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
496916 | 2021-12-22T06:32:05 Z | abc864197532 | Hidden Sequence (info1cup18_hidden) | C++17 | 1 ms | 456 KB |
#include <bits/stdc++.h> using namespace std; #define lli long long int #define mp make_pair #define eb emplace_back #define pb push_back #define X first #define Y second #define pii pair<int,int> #define all(x) x.begin(), x.end() #define rall(x) x.rbegin(), x.rend() void abc() {cout << endl;} template <typename T, typename ...U> void abc(T i, U ...j) { cout << i << ' ', abc(j...); } template <typename T> void printv(T l, T r) { for (; l != r; ++l) cout << *l << " \n"[l + 1 == r]; } #ifdef Doludu #define test(x...) abc("[" + string(#x) + "]", x); #include "grader.cpp" #else #define test(x...) void(0); #endif const int N = 1001; bool isSubsequence (vector <int> S); vector <int> findSequence(int n) { int bound = n + 1 >> 1; int len = -1, d = 0; if (isSubsequence(vector <int>(bound, 0))) { d = 1; } for (int i = bound - 1; i > 0; --i) { if (isSubsequence(vector <int>(i, d))) { len = i; break; } } vector <int> ans; for (int i = 0; i < n; ++i) { vector <int> res = ans; res.pb(d ^ 1); for (int j = 0; j < len; ++j) res.pb(d); printv(all(res)); if (isSubsequence(res)) ans.pb(d ^ 1); else ans.pb(d), len--; } return ans; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 1 ms | 456 KB | Execution killed with signal 6 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 1 ms | 456 KB | Execution killed with signal 6 |
2 | Halted | 0 ms | 0 KB | - |