VOOZH about

URL: https://www.geeksforgeeks.org/dsa/maximize-ascii-sum-removing-k-characters-in-string/

⇱ Maximize ascii sum removing K characters in String - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Maximize ascii sum removing K characters in String

Last Updated : 23 Jul, 2025

Given a string s and an integer K, the task is to remove K characters from the string such that the sum of ASCII (American Standard Code for Information Interchange) values of the remaining characters is maximized.

Examples:

Input: s = "word", K = 2
Output: 233
Explanation: We need to remove exactly 2 characters from the string "word" to maximize the ASCII sum of the remaining characters. By removing 'o' and 'd', we obtain the maximum sum of 233, which corresponds to the ASCII sum of the remaining characters ('r' and 'o').

Input: s = "abcABd", K = 3
Output: 297
Explanation: We need to remove exactly 3 characters from the string "abcABd" to maximize the ASCII sum of the remaining characters. By removing 'a', 'A', and 'B', we obtain the maximum sum of 297, which corresponds to the ASCII sum of the remaining characters ('b', 'c', and 'd').

Approach: Bruteforce Approach

This can be solved with the following idea:

This can be solved by keeping some observations in the notice.

Below are the steps involved in the implementation:

  • We start by initializing a variable maxSum to the sum of the ASCII values of all the characters in the string. This is because the maximum ASCII sum we can get by removing K characters from the string cannot be greater than the sum of all the characters in the string.
  • We then iterate over all possible combinations of K characters to remove from the string. Since we want to remove exactly K characters, we use a bitmask approach to generate all possible combinations of k characters from the string. We iterate over all numbers from 0 to 2^n - 1, where n is the length of the string, and use the binary representation of each number as a mask to indicate which characters to remove.
  • For each combination of K characters, we calculate the ASCII sum of the remaining characters in the string. To do this, we iterate over all the characters in the string and check if the corresponding bit in the mask is set or not. If the bit is not set, we add the ASCII value of the character to the sum.
  • If the calculated ASCII sum is greater than the current value of maxSum, we update maxSum to the new value.
  • Finally, we return maxSum as the maximum ASCII sum that can be obtained by removing k characters from the string.

Below is the implementation of the above approach:


Output
297

Time Complexity: O(2^n * n)
Auxiliary Space: O(1)

Approach: Greedy Approach 

This can be solved with the following idea:

If we remove minimum ascii values characters then we will get maximized sum of remaining character.

  • Initialize maxSum variable to 0;
  • Sort the given string.
  • Add the ASCII value of characters from index k to the last index in the maxSum.
  • Return maxSum variable.

Below is the implementation of the above approach:


Output
297

Time Complexity: O( n*log(n) )
Auxiliary Space: O(n)

Comment
Article Tags: