CF1924B.Space Harbour
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
There are n points numbered 1 to n on a straight line. Initially, there are m harbours. The i -th harbour is at point Xi and has a value Vi . It is guaranteed that there are harbours at the points 1 and n . There is exactly one ship on each of the n points. The cost of moving a ship from its current location to the next harbour is the product of the value of the nearest harbour to its left and the distance from the nearest harbour to its right. Specifically, if a ship is already at a harbour, the cost of moving it to the next harbour is 0 .
Additionally, there are q queries, each of which is either of the following 2 types:
- 1 x v — Add a harbour at point x with value v . It is guaranteed that before adding the harbour, there is no harbour at point x .
- 2 l r — Print the sum of the cost of moving all ships at points from l to r to their next harbours. Note that you just need to calculate the cost of moving the ships but not actually move them.
输入格式
The first line contains three integers n , m , and q ( 2≤m≤n≤3⋅105 , 1≤q≤3⋅105 ) — the number of points, harbours, and queries, respectively.
The second line contains m distinct integers X1,X2,…,Xm(1≤Xi≤n) — the position at which the i -th harbour is located.
The third line contains m integers V1,V2,…,Vm(1≤Vi≤107) — the value of the i -th harbour.
Each of the next q lines contains three integers. The first integer is t ( 1≤t≤2 ) — type of query. If t=1 , then the next two integers are x and v ( 2≤x≤n−1 , 1≤v≤107 ) — first-type query. If t=2 , then the next two integers are l and r ( 1≤l≤r≤n ) — second-type query.
It is guaranteed that there is at least one second-type query.
输出格式
For every second-type query, print one integer in a new line — answer to this query.
输入输出样例
输入#1
8 3 4 1 3 8 3 24 10 2 2 5 1 5 15 2 5 5 2 7 8
输出#1
171 0 15
说明/提示
For the first type 2 query, the cost for ships at positions 2 , 3 , 4 and 5 are 3(3×1) , 0 , 96(24×4) and 72(24×3) respectively.
For the second type 2 query, since the ship at position 5 is already at a harbour, so the cost is 0 .
For the third type 2 query, the cost for ships at position 7 and 8 are 15(15×1) and 0 respectively.