We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
Manipulative Numbers
Manipulative Numbers
Sort by
recency
|
19 Discussions
|
Please Login in order to post a comment
Here is manipulative numbers problem solution in python java c++ and c programming - https://programs.programmingoneonone.com/2021/07/hackerrank-manipulative-numbers-problem.html
include
include
include
include
include
using namespace std;
const int32_t N = 101; int32_t A[N]; int32_t n;
bool Ok(int32_t k) { map M; int32_t mask = 0; for (int32_t i = 30; i >= k; i--) { mask |= (1< vec; for (map::iterator it = M.begin(); it != M.end(); ++it) { vec.push_back(it->second); } sort(vec.begin(), vec.end()); if (vec.size() == 1) return false; int32_t s = vec[0]; for (int32_t i = 1; i < vec.size(); i++) { if (s < vec[i]) return false; s += vec[i]; } return true; } int32_t main() { scanf("%d", &n); for (int32_t i = 0; i < n; i++) { scanf("%d", &A[i]); } for (int32_t k = 30; k >= 0; k--) { if (Ok(k)) { printf("%d\n", k); break; } } return 0; }
who can i find optimal permutation
Solution descibed here
Honetsly I was unable to resolve this without StackOverflow help
Is there anyway to solve this without finding all the permutations of the array, because when the number of elements increase it leads to timeout.