Submission #706828

#TimeUsernameProblemLanguageResultExecution timeMemory
706828grossly_overconfidentPermutation (APIO22_perm)C++17
0 / 100
88 ms460 KiB
#include "perm.h" #include <bits/stdc++.h> using namespace std; set<long long> p; vector<int> construct_permutation(long long k) { int i = 1; if (p.empty()){ while (pow(2, i) < LONG_LONG_MAX){ p.insert(pow(2, i)); i++; } } long long remaining = k - (k % 2); vector<int> out, found; int os; if (k % 2 != 0){ out.push_back(INT_MAX); os++; } int fs = 0; while (remaining > 0){ long long t = *(--p.upper_bound(remaining)); fs++; remaining -= t; found.push_back(t); } for (int i = 0; i < log2(found[0]); ++i){ out.push_back(i * 2); os++; } for (int i = 1; i < fs; ++i){ out.push_back((log2(found[i]) - 1) * 2 + 1); os++; } vector<int> outsorted = out; sort(outsorted.begin(), outsorted.end()); for (int i = 0; i < os; ++i){ for (int j = 0; j < os; ++j){ if (outsorted[i] == out[j]){ out[j] = i; break; } } } return out; } int no(){ int n; cin >> n; auto g = construct_permutation(n); for (auto h : g){ cout << h << endl; } }

Compilation message (stderr)

perm.cpp: In function 'int no()':
perm.cpp:61:1: warning: no return statement in function returning non-void [-Wreturn-type]
   61 | }
      | ^
perm.cpp: In function 'std::vector<int> construct_permutation(long long int)':
perm.cpp:21:5: warning: 'os' may be used uninitialized in this function [-Wmaybe-uninitialized]
   21 |   os++;
      |   ~~^~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...