QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#511017 | #7845. Fast Forward | Umok | RE | 0ms | 3684kb | C++23 | 1.1kb | 2024-08-09 15:13:36 | 2024-08-09 15:13:37 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
#define IOS ios::sync_with_stdio(0), cin.tie(0), cout.tie(0)
#define int long long
#define uint unsigned long long
#define lb(x) (x & (-x))
#define endl '\n'
#define INF LONG_LONG_MAX
#define eps 1e-7
const int N = 1e2 + 5;
typedef pair<int, int> PII;
int ar[N];
int cnt[N];
void solve()
{
int n, m;
cin >> n >> m;
for (int i = 1; i <= n; i++)
cin >> ar[i], ar[i + n] = ar[i];
for (int i = 1; i <= 2 * n; i++)
{
ar[i] += ar[i - 1];
}
ar[n + n] = INF;
for (int i = 1; i <= n; i++)
{
int res = 0;
int st = i;
while (st < i + n)
{
int l = lower_bound(ar + st, ar + st + n, ar[st - 1] + m) - ar;
if (l >= i + n - 1)
{
cnt[i] = res;
break;
}
else
{
st = l + 1;
res++;
}
}
}
for (int i = 1; i <= n;i ++)
cout << cnt[i] << " ";
}
signed main()
{
// IOS;
solve();
return 0;
}
详细
Test #1:
score: 100
Accepted
time: 0ms
memory: 3684kb
input:
7 7 1 1 1 1 1 1 1
output:
0 0 0 0 0 0 0
result:
ok single line: '0 0 0 0 0 0 0 '
Test #2:
score: 0
Accepted
time: 0ms
memory: 3592kb
input:
3 3 1 1 3
output:
0 1 1
result:
ok single line: '0 1 1 '
Test #3:
score: 0
Accepted
time: 0ms
memory: 3596kb
input:
10 5 4 1 5 5 1 3 2 1 5 2
output:
5 4 5 4 4 5 4 4 5 4
result:
ok single line: '5 4 5 4 4 5 4 4 5 4 '
Test #4:
score: -100
Runtime Error
input:
1000000 22867 553 901 645 485 940 745 166 365 357 935 102 534 812 329 56 650 100 992 528 829 755 128 190 916 245 942 132 359 367 562 636 77 62 562 404 487 545 298 71 697 784 523 957 383 332 650 636 822 245 379 792 605 239 69 723 867 925 308 511 975 808 341 341 125 940 833 810 282 567 754 893 59 618 ...