CF573D.Bear and Cavalry

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Would you want to fight against bears riding horses? Me neither.

Limak is a grizzly bear. He is general of the dreadful army of Bearland. The most important part of an army is cavalry of course.

Cavalry of Bearland consists of nn warriors and nn horses. ii -th warrior has strength wiw_{i} and ii -th horse has strength hih_{i} . Warrior together with his horse is called a unit. Strength of a unit is equal to multiplied strengths of warrior and horse. Total strength of cavalry is equal to sum of strengths of all nn units. Good assignment of warriors and horses makes cavalry truly powerful.

Initially, ii -th warrior has ii -th horse. You are given qq queries. In each query two warriors swap their horses with each other.

General Limak must be ready for every possible situation. What if warriors weren't allowed to ride their own horses? After each query find the maximum possible strength of cavalry if we consider assignments of all warriors to all horses that no warrior is assigned to his own horse (it can be proven that for n>=2n>=2 there is always at least one correct assignment).

Note that we can't leave a warrior without a horse.

输入格式

The first line contains two space-separated integers, nn and qq ( 2<=n<=30 0002<=n<=30\ 000 , 1<=q<=10 0001<=q<=10\ 000 ).

The second line contains nn space-separated integers, w1,w2,...,wnw_{1},w_{2},...,w_{n} ( 1<=wi<=1061<=w_{i}<=10^{6} ) — strengths of warriors.

The third line contains nn space-separated integers, h1,h2,...,hnh_{1},h_{2},...,h_{n} ( 1<=hi<=1061<=h_{i}<=10^{6} ) — strengths of horses.

Next qq lines describe queries. ii -th of them contains two space-separated integers aia_{i} and bib_{i} ( 1<=ai,bi<=n1<=a_{i},b_{i}<=n , aibia_{i}≠b_{i} ), indices of warriors who swap their horses with each other.

输出格式

Print qq lines with answers to queries. In ii -th line print the maximum possible strength of cavalry after first ii queries.

输入输出样例

  • 输入#1

    4 2
    1 10 100 1000
    3 7 2 5
    2 4
    2 4
    

    输出#1

    5732
    7532
    
  • 输入#2

    3 3
    7 11 5
    3 2 1
    1 2
    1 3
    2 3
    

    输出#2

    44
    48
    52
    
  • 输入#3

    7 4
    1 2 4 8 16 32 64
    87 40 77 29 50 11 18
    1 5
    2 7
    6 2
    5 6
    

    输出#3

    9315
    9308
    9315
    9315
    

说明/提示

Clarification for the first sample:

Warriors: 1 10 100 1000Horses: 3 7 2 5

After first query situation looks like the following:

Warriors: 1 10 100 1000Horses: 3 5 2 7

We can get 12+103+1007+10005=57321·2+10·3+100·7+1000·5=5732 (note that no hussar takes his own horse in this assignment).

After second query we get back to initial situation and optimal assignment is 12+103+1005+10007=75321·2+10·3+100·5+1000·7=7532 .

Clarification for the second sample. After first query:

Warriors: 7 11 5Horses: 2 3 1

Optimal assignment is 71+112+53=447·1+11·2+5·3=44 .

Then after second query 73+112+51=487·3+11·2+5·1=48 .

Finally 72+113+51=527·2+11·3+5·1=52 .

首页