Fennec vs Monster

AtCoder
IDabc153_c
Time2000ms
Memory256MB
Difficulty
Fennec is fighting with $N$ monsters. The _health_ of the $i$\-th monster is $H_i$. Fennec can do the following two actions: * Attack: Fennec chooses one monster. That monster's health will decrease by $1$. * Special Move: Fennec chooses one monster. That monster's health will become $0$. There is no way other than Attack and Special Move to decrease the monsters' health. Fennec wins when all the monsters' healths become $0$ or below. Find the minimum number of times Fennec needs to do Attack (not counting Special Move) before winning when she can use Special Move at most $K$ times. ## Constraints * $1 \leq N \leq 2 \times 10^5$ * $0 \leq K \leq 2 \times 10^5$ * $1 \leq H_i \leq 10^9$ * All values in input are integers. ## Input Input is given from Standard Input in the following format: $N$ $K$ $H_1$ $...$ $H_N$ [samples]
Samples
Input #1
3 1
4 1 5
Output #1
5

By using Special Move on the third monster, and doing Attack four times on the first monster and once on the second monster, Fennec can win with five Attacks.
Input #2
8 9
7 9 3 2 3 8 4 6
Output #2
0

She can use Special Move on all the monsters.
Input #3
3 0
1000000000 1000000000 1000000000
Output #3
3000000000

Watch out for overflow.
API Response (JSON)
{
  "problem": {
    "name": "Fennec vs Monster",
    "description": {
      "content": "Fennec is fighting with $N$ monsters. The _health_ of the $i$\\-th monster is $H_i$. Fennec can do the following two actions: *   Attack: Fennec chooses one monster. That monster's health will decreas",
      "description_type": "Markdown"
    },
    "platform": "AtCoder",
    "limit": {
      "time_limit": 2000,
      "memory_limit": 262144
    },
    "difficulty": "None",
    "is_remote": true,
    "is_sync": true,
    "sync_url": null,
    "sign": "abc153_c"
  },
  "statements": [
    {
      "statement_type": "Markdown",
      "content": "Fennec is fighting with $N$ monsters.\nThe _health_ of the $i$\\-th monster is $H_i$.\nFennec can do the following two actions:\n\n*   Attack: Fennec chooses one monster. That monster's health will decreas...",
      "is_translate": false,
      "language": "English"
    }
  ]
}
Full JSON Raw Segments