Manipulative Numbers Discussions | Algorithms | HackerRank

Sort by

recency

|

19 Discussions

|

  • + 0 comments

    Here is manipulative numbers problem solution in python java c++ and c programming - https://programs.programmingoneonone.com/2021/07/hackerrank-manipulative-numbers-problem.html

  • + 0 comments

    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; }

  • + 0 comments

    who can i find optimal permutation

  • + 0 comments

    Solution descibed here

    Honetsly I was unable to resolve this without StackOverflow help

  • + 0 comments

    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.