CF1425E.Excitation of Atoms

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Mr. Chanek is currently participating in a science fair that is popular in town. He finds an exciting puzzle in the fair and wants to solve it.

There are NN atoms numbered from 11 to NN . These atoms are especially quirky. Initially, each atom is in normal state. Each atom can be in an excited. Exciting atom ii requires DiD_i energy. When atom ii is excited, it will give AiA_i energy. You can excite any number of atoms (including zero).

These atoms also form a peculiar one-way bond. For each ii , (1i<N)(1 \le i < N) , if atom ii is excited, atom EiE_i will also be excited at no cost. Initially, EiE_i = i+1i+1 . Note that atom NN cannot form a bond to any atom.

Mr. Chanek must change exactly KK bonds. Exactly KK times, Mr. Chanek chooses an atom ii , (1i<N)(1 \le i < N) and changes EiE_i to a different value other than ii and the current EiE_i . Note that an atom's bond can remain unchanged or changed more than once. Help Mr. Chanek determine the maximum energy that he can achieve!

note: You must first change exactly KK bonds before you can start exciting atoms.

输入格式

The first line contains two integers NN KK (4N105,0K<N)(4 \le N \le 10^5, 0 \le K < N) , the number of atoms, and the number of bonds that must be changed.

The second line contains NN integers AiA_i (1Ai106)(1 \le A_i \le 10^6) , which denotes the energy given by atom ii when on excited state.

The third line contains NN integers DiD_i (1Di106)(1 \le D_i \le 10^6) , which denotes the energy needed to excite atom ii .

输出格式

A line with an integer that denotes the maximum number of energy that Mr. Chanek can get.

输入输出样例

  • 输入#1

    6 1
    5 6 7 8 10 2
    3 5 6 7 1 10

    输出#1

    35

说明/提示

An optimal solution to change E5E_5 to 1 and then excite atom 5 with energy 1. It will cause atoms 1, 2, 3, 4, 5 be excited. The total energy gained by Mr. Chanek is (5 + 6 + 7 + 8 + 10) - 1 = 35.

Another possible way is to change E3E_3 to 1 and then exciting atom 3 (which will excite atom 1, 2, 3) and exciting atom 4 (which will excite atom 4, 5, 6). The total energy gained by Mr. Chanek is (5 + 6 + 7 + 8 + 10 + 2) - (6 + 7) = 25 which is not optimal.

首页