LeetCode 1184 公交站间的距离[数组] HERODING的LeetCode之路

Posted HERODING23

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 1184 公交站间的距离[数组] HERODING的LeetCode之路相关的知识,希望对你有一定的参考价值。


解题思路:
很简单的一道数组题,直接两个方向求和进行比较即可,另一个方向不方便求就拿全部求和结果减去正方向求和结果进行对比即可,代码如下:

class Solution 
public:
    int distanceBetweenBusStops(vector<int>& distance, int start, int destination) 
        int total = accumulate(distance.begin(), distance.end(), 0);
        int dest1;
        if(start > destination) 
            dest1 = accumulate(distance.begin() + destination, distance.begin() + start, 0);
         else 
            dest1 = accumulate(distance.begin() + start, distance.begin() + destination, 0);
        
        return min(dest1, total - dest1);
    
;

以上是关于LeetCode 1184 公交站间的距离[数组] HERODING的LeetCode之路的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode 1184. 公交站间的距离

LeetCode1184. 公交站间的距离(C++)

每日一题1184. 公交站间的距离

luogu1315 观光公交

LeetCode | 1385. Find the Distance Value Between Two Arrays两个数组间的距离值Python

leetcode 72. 编辑距离