比赛 |
EYOI暨SBOI暑假快乐赛5th |
评测结果 |
AAATTTTTTT |
题目名称 |
回转寿司 |
最终得分 |
30 |
用户昵称 |
张恒畅 |
运行时间 |
7.000 s |
代码语言 |
C++ |
内存使用 |
4.55 MiB |
提交时间 |
2022-06-29 11:44:14 |
显示代码纯文本
//编程思路通过前缀和来处理
// 狂吃不止和线性出现
// s[j] - s[i-1] -> 一段区间美味值
#include<bits/stdc++.h>
using namespace std;
int n, l, r;
int ans = 0;
const int N = 1e5+100;
int a[N];
int s[N];//前缀和
int main()
{
freopen("bjoi2016_hzss.in","r",stdin);
freopen("bjoi2016_hzss.out","w",stdout);
cin >> n >> l >>r;
for(int i = 1; i <= n; i++)
{
cin >> a[i];
s[i] = a[i] +s[i-1];
}
for(int i = 0; i <= n; i++)
{
for(int j = i+1; j <= n; j++)
{
if(s[j] - s[i] <= r && l <= s[j] - s[i])
{
ans++;
}
}
}
cout << ans;
}
/*
6 7 17
7 5 1 4 2 8
*/