A Mini Locomotive(FZU1178)JAVA代码

编程入门 行业动态 更新时间:2024-10-19 02:16:56

A Mini Locomotive(FZU1178)JAVA<a href=https://www.elefans.com/category/jswz/34/1771412.html style=代码"/>

A Mini Locomotive(FZU1178)JAVA代码

题目
A train has a locomotive that pulls the train with its many passenger coaches. If the locomotive breaks down, there is no way to pull the train. Therefore, the office of railroads decided to distribute three mini locomotives to each station. A mini locomotive can pull only a few passenger coaches. If a locomotive breaks down, three mini locomotives cannot pull all passenger coaches. So, the office of railroads made a decision as follows:

  1. Set the number of maximum passenger coaches a mini locomotive can pull, and a mini locomotive will not pull over the number. The number is same for all three locomotives.
  2. With three mini locomotives, let them transport the maximum number of passengers to destination. The office already knew the number of passengers in each passenger coach, and no passengers are allowed to move between coaches.
  3. Each mini locomotive pulls consecutive passenger coaches. Right after the locomotive, passenger coaches have numbers starting from 1.

For example, assume there are 7 passenger coaches, and one mini locomotive can pull a maximum of 2 passenger coaches. The number of passengers in the passenger coaches, in order from 1 to 7, is 35, 40, 50, 10, 30, 45, and 60.

If three mini locomotives pull passenger coaches 1-2, 3-4, and 6-7, they can transport 240 passengers. In this example, three mini locomotives cannot transport more than 240 passengers.

Given the number of passenger coaches, the number of passengers in each passenger coach, and the maximum number of passenger coaches which can be pulled by a mini locomotive, write a program to find the maximum number of passengers which can be transported by the three mini locomotives.

import java.util.*;
import java.math.*;
public class Main {public static void main(String[] args){Scanner sc=new Scanner(System.in);int []a=new int [60000];int t,n,m;t=sc.nextInt();while(t-->0){int [][]dp=new int[60000][10];int []sum=new int [60000];n=sc.nextInt();for(int i = 1; i <= n; i++)a[i]=sc.nextInt();for(int i = 1; i <= n; i++)sum[i] = sum[i - 1] + a[i];m=sc.nextInt();int yjl;for(int i = 1; i <= n; i++){for(int j = 1; j <= 3; j++){if(i < m)    {yjl = 0;}elseyjl = i - m;dp[i][j] =Math.max(dp[i - 1][j], dp[yjl][j - 1] + sum[i] - sum[yjl]);}}System.out.println(dp[n][3]);}}
}

更多推荐

A Mini Locomotive(FZU1178)JAVA代码

本文发布于:2024-02-06 12:38:20,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1749134.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:代码   Locomotive   Mini   JAVA

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!