Codeforces534E:Berland Local Positioning System

In Berland a bus travels along the main street of the capital. The street begins from the main square and looks like a very long segment. There are n bus stops located along the street, the i-th of them is located at the distance ai from the central square, all distances are distinct, the stops are numbered in the order of increasing distance from the square, that is, ai < ai + 1 for all i from 1 to n - 1. The bus starts its journey from the first stop, it passes stops 23 and so on. It reaches the stop number n, turns around and goes in the opposite direction to stop 1, passing all the intermediate stops in the reverse order. After that, it again starts to move towards stop n. During the day, the bus runs non-stop on this route.

The bus is equipped with the Berland local positioning system. When the bus passes a stop, the system notes down its number.

One of the key features of the system is that it can respond to the queries about the distance covered by the bus for the parts of its path between some pair of stops. A special module of the system takes the input with the information about a set of stops on a segment of the path, a stop number occurs in the set as many times as the bus drove past it. This module returns the length of the traveled segment of the path (or -1 if it is impossible to determine the length uniquely). The operation of the module is complicated by the fact that stop numbers occur in the request not in the order they were visited but in the non-decreasing order.

For example, if the number of stops is 6, and the part of the bus path starts at the bus stop number 5, ends at the stop number 3 and passes the stops as follows: , then the request about this segment of the path will have form: 3, 4, 5, 5, 6. If the bus on the segment of the path from stop 5 to stop 3 has time to drive past the 1-th stop (i.e., if we consider a segment that ends with the second visit to stop 3 on the way from 5), then the request will have form: 1, 2, 2, 3, 3, 4, 5, 5, 6.

You will have to repeat the Berland programmers achievement and implement this function.

Input

The first line contains integer n (2 ≤ n ≤ 2·105) — the number of stops.

The second line contains n integers (1 ≤ ai ≤ 109) — the distance from the i-th stop to the central square. The numbers in the second line go in the increasing order.

The third line contains integer m (1 ≤ m ≤ 4·105) — the number of stops the bus visited on some segment of the path.

The fourth line contains m integers (1 ≤ bi ≤ n) — the sorted list of numbers of the stops visited by the bus on the segment of the path. The number of a stop occurs as many times as it was visited by a bus.

It is guaranteed that the query corresponds to some segment of the path.

Output

In the single line please print the distance covered by a bus. If it is impossible to determine it unambiguously, print  - 1.

Sample test(s)
input
6
2 3 5 7 11 13
5
3 4 5 5 6
output
10
input
6
2 3 5 7 11 13
9
1 2 2 3 3 4 5 5 6
output
16
input
3
10 200 300
4
1 2 2 3
output
-1
input
3
1 2 3
4
1 2 2 3
output
3
Note

The first test from the statement demonstrates the first example shown in the statement of the problem.

The second test from the statement demonstrates the second example shown in the statement of the problem.

In the third sample there are two possible paths that have distinct lengths, consequently, the sought length of the segment isn't defined uniquely.

In the fourth sample, even though two distinct paths correspond to the query, they have the same lengths, so the sought length of the segment is defined uniquely.


题意:给出n个车站离中央广场的距离,然后给出公交车对于各个车站的访问情况,问公交车走过的路程是否唯一,唯一输出路程,不唯一输出-1

思路:对于输出-1的情况,只有在对于每个车站的访问次数都一样,而且两个车站的距离有差异的情况下才成立


#include <iostream>
#include <stdio.h>
#include <string.h>
#include <stack>
#include <queue>
#include <map>
#include <set>
#include <vector>
#include <math.h>
#include <algorithm>
using namespace std;
#define ls 2*i
#define rs 2*i+1
#define up(i,x,y) for(i=x;i<=y;i++)
#define down(i,x,y) for(i=x;i>=y;i--)
#define mem(a,x) memset(a,x,sizeof(a))
#define w(a) while(a)
#define LL long long
const double pi = acos(-1.0);
#define Len 200005
#define mod 19999997
const int INF = 0x3f3f3f3f;

LL n,m,a[Len],b[2*Len],hsh[Len];

int main()
{
    LL i,j,k,minn,maxn,ans;
    bool flag;
    mem(hsh,0);
    scanf("%I64d",&n);
    up(i,1,n)
    scanf("%I64d",&a[i]);
    scanf("%I64d",&m);
    minn = INF,maxn = 0;
    up(i,1,m)
    {
        scanf("%I64d",&b[i]);
        hsh[b[i]]++;
        if(b[i]==1 || b[i]==n)
            hsh[b[i]]++;
    }
    up(i,1,n)
    {
        minn = min(minn,hsh[i]);
        maxn = max(maxn,hsh[i]);
    }
    if(minn == maxn)
    {
        flag = true;
        up(i,1,n-2)
        {
            if(a[i+1]-a[i]!=a[i+2]-a[i+1])
            {
                flag = false;
                break;
            }
        }
        if(!flag)
            printf("-1\n");
        else
            printf("%I64d\n",(a[n]-a[1])*minn-(a[2]-a[1]));
    }
    else
    {
        LL ans = 0;
        up(i,1,n-1)
        {
            ans+=(a[i+1]-a[i])*min(hsh[i+1],hsh[i]);
        }
        printf("%I64d\n",ans);
    }

    return 0;
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值