C++程序中每个辐射站的最终辐射


假设在直线上有N个站点。每个站点具有相同的非负辐射功率。每个站点都可以通过以下方式增加其相邻站点的辐射功率。

假设辐射功率为R的站点i将把(i – 1)站点的辐射功率增加R-1,(i - 2)站点的辐射功率增加R-2,并将(i + 1)站点的辐射功率增加R-1,(i + 2)站点的辐射功率增加R-2,以此类推。例如,如果数组为Arr = [1, 2, 3],则输出将为3, 4, 4。新的辐射将为[1 + (2 – 1) + (3 - 2), 2 + (1 – 1) + (3 - 1), 3 + (2 – 1)] = [3, 4, 4]

思路很简单。对于每个站点i,都会增加相邻站点的辐射,直到有效辐射变为负数。

示例

 在线演示

#include <iostream>
using namespace std;
class pump {
   public:
   int petrol;
   int distance;
};
int findStartIndex(pump pumpQueue[], int n) {
   int start_point = 0;
   int end_point = 1;
   int curr_petrol = pumpQueue[start_point].petrol - pumpQueue[start_point].distance;
   while (end_point != start_point || curr_petrol < 0) {
      while (curr_petrol < 0 && start_point != end_point) {
         curr_petrol -= pumpQueue[start_point].petrol - pumpQueue[start_point].distance;
         start_point = (start_point + 1) % n;
         if (start_point == 0)
         return -1;
      }
      curr_petrol += pumpQueue[end_point].petrol - pumpQueue[end_point].distance;
      end_point = (end_point + 1) % n;
   }
   return start_point;
}
int main() {
   pump PumpArray[] = {{4, 6}, {6, 5}, {7, 3}, {4, 5}};
   int n = sizeof(PumpArray)/sizeof(PumpArray[0]);
   int start = findStartIndex(PumpArray, n);
   if(start == -1)
      cout<<"No solution";
   else
      cout<<"Index of first petrol pump : "<<start;
}

输出

Index of first petrol pump : 1

更新于:2019年12月18日

浏览量:106

开启您的职业生涯

完成课程并获得认证

开始学习
广告