当前位置 : 主页 > 编程语言 > java >

#yyds干货盘点# 解决名企真题:罪犯转移

来源:互联网 收集:自由互联 发布时间:2022-07-20
1.简述: 描述 C市现在要转移一批罪犯到D市,C市有n名罪犯,按照入狱时间有顺序,另外每个罪犯有一个罪行值,值越大罪越重。现在为了方便管理,市长决定转移入狱时间连续的c名犯

1.简述:

描述

C市现在要转移一批罪犯到D市,C市有n名罪犯,按照入狱时间有顺序,另外每个罪犯有一个罪行值,值越大罪越重。现在为了方便管理,市长决定转移入狱时间连续的c名犯人,同时要求转移犯人的罪行值之和不超过t,问有多少种选择的方式(一组测试用例可能包含多组数据,请注意处理)?

输入描述:

第一行数据三个整数:n,t,c(1≤n≤2e5,0≤t≤1e9,1≤c≤n),第二行按入狱时间给出每个犯人的罪行值ai(0≤ai≤1e9)

输出描述:

一行输出答案。

示例1

输入:

3 100 2
1 2 3

输出:

2

2.代码实现:

import java.util.*;
public class Main{
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
while(sc.hasNext()){
int n = sc.nextInt();
int t = sc.nextInt();
int c = sc.nextInt();
int[] v = new int[n];
for(int i = 0; i < n; ++i) v[i] = sc.nextInt();
int r = 0;
for(int i = 0; i <= n - c; ++i){
int sum = 0;
for(int j = i; j < i + c; ++j){
sum += v[j];
}
if(sum <= t) r++;
}
System.out.println(r);
}
}
}

上一篇:表示换行
下一篇:没有了
网友评论