1046 Shortest Distance (PAT甲级)

cpp 复制代码
#include <cstdio>
#include <vector>
#include <algorithm>

int N, M, d, u, v, sum, tmp;
std::vector<int> dist;

int main(){
    scanf("%d", &N);
    sum = 0;
    dist.push_back(0);
    for(int i = 0; i < N; ++i){
        scanf("%d", &d);
        sum += d;
        dist.push_back(sum);
    }
    scanf("%d", &M);
    for(int i = 0; i < M; ++i){
        scanf("%d %d", &u, &v);
        if(u > v){
            std::swap(u, v);
        }
        tmp = dist[v - 1] - dist[u - 1];
        if(tmp * 2 > sum){
            tmp = sum - tmp;
        }
        printf("%d\n", tmp);
    }
    return 0;
}

题目如下:

The task is really simple: given N exits on a highway which forms a simple cycle, you are supposed to tell the shortest distance between any pair of exits.

Input Specification:

Each input file contains one test case. For each case, the first line contains an integer N (in [3,105]), followed by N integer distances D1​ D2​ ⋯ DN​, where Di​ is the distance between the i-th and the (i+1)-st exits, and DN​ is between the N-th and the 1st exits. All the numbers in a line are separated by a space. The second line gives a positive integer M (≤104), with M lines follow, each contains a pair of exit numbers, provided that the exits are numbered from 1 to N. It is guaranteed that the total round trip distance is no more than 107.

Output Specification:

For each test case, print your results in M lines, each contains the shortest distance between the corresponding given pair of exits.

Sample Input:

复制代码
5 1 2 4 14 9
3
1 3
2 5
4 1

Sample Output:

复制代码
3
10
7
相关推荐
hie9889413 分钟前
MATLAB锂离子电池伪二维(P2D)模型实现
人工智能·算法·matlab
Jay_51514 分钟前
C++多态与虚函数详解:从入门到精通
开发语言·c++
杰克尼23 分钟前
BM5 合并k个已排序的链表
数据结构·算法·链表
.30-06Springfield1 小时前
决策树(Decision tree)算法详解(ID3、C4.5、CART)
人工智能·python·算法·决策树·机器学习
我不是哆啦A梦1 小时前
破解风电运维“百模大战”困局,机械版ChatGPT诞生?
运维·人工智能·python·算法·chatgpt
xiaolang_8616_wjl1 小时前
c++文字游戏_闯关打怪
开发语言·数据结构·c++·算法·c++20
small_wh1te_coder1 小时前
硬件嵌入式学习路线大总结(一):C语言与linux。内功心法——从入门到精通,彻底打通你的任督二脉!
linux·c语言·汇编·嵌入式硬件·算法·c
FrostedLotus·霜莲2 小时前
C++主流编辑器特点比较
开发语言·c++·编辑器
挺菜的2 小时前
【算法刷题记录(简单题)002】字符串字符匹配(java代码实现)
java·开发语言·算法
凌肖战5 小时前
力扣网编程55题:跳跃游戏之逆向思维
算法·leetcode