Submission #686506

#TimeUsernameProblemLanguageResultExecution timeMemory
686506opPO"The Lyuboyn" code (IZhO19_lyuboyn)C++17
11 / 100
342 ms116064 KiB
#pragma GCC optimize("O3,unroll-loops") #include <bits/stdc++.h> #include <ext/pb_ds/assoc_container.hpp> #include <ext/pb_ds/tree_policy.hpp> using namespace std; using namespace __gnu_pbds; #define int long long #define f first #define s second #define pb push_back #define ld long double #define sz(x) (int)x.size() #define all(x) x.begin(), x.end() #define rall(x) x.rbegin(), x.rend() #define vec vector using ll = long long; using pii = pair<int, int>; using pll = pair<ll, ll>; using oset = tree<int, null_type, less<int>, rb_tree_tag, tree_order_statistics_node_update>; const ld eps = 1e-6; const int mod = 1e9 + 7; const int oo = 2e9; const ll OO = 2e18; const int N = 2e5 + 10; vec<vec<int>> gen(int n) { if (n == 1) { return {{0}, {1}}; } vec<vec<int>> g = gen(n - 1); vec<vec<int>> res; for (auto &x : g) { res.pb({}); res.back().pb(0); for (int &b : x) res.back().pb(b); } reverse(all(g)); for (auto &x : g) { res.pb({}); res.back().pb(1); for (int &b : x) res.back().pb(b); } return res; } void solve() { int n, k, t, s; cin >> n >> k >> t >> s; if (k == 1 && s == 0) { vec<vec<int>> res = gen(n); cout << sz(res) << "\n"; for (auto &x : res) { for (int &b : x) cout << b; cout << "\n"; } return; } } int32_t main() { ios_base::sync_with_stdio(false); cin.tie(0); solve(); return 0; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...