# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
968064 |
2024-04-23T07:30:46 Z |
vjudge1 |
Vudu (COCI15_vudu) |
C++17 |
|
303 ms |
34268 KB |
#include<bits/stdc++.h>
using namespace std;
int n, fw[1000001];
long long qs[1000001], k;
long long ans;
void update(int idx, int val){
for(; idx <= n; idx+=(idx&-idx)) fw[idx]+=val;
}
long long query(int idx){
long long sum = 0;
for(; idx; idx-=(idx&-idx)) sum+=fw[idx];
return sum;
}
signed main(){
cin.tie(nullptr)->sync_with_stdio(false);
cin >> n;
vector<long long> v;
memset(qs, 0, sizeof(qs));
for(int i = 1; i<=n; ++i) cin >> qs[i];
cin >> k;
for(int i = 1; i<=n; ++i) qs[i]+=qs[i - 1];
for(int i = 1; i<=n; ++i) v.push_back(qs[i] - i*k);
sort(v.begin(), v.end());
v.erase(unique(v.begin(), v.end()));
for(int i = 0; i<=n; ++i){
int id = lower_bound(v.begin(), v.end(), qs[i] - i*k) - v.begin();
ans+=query(id+1);
update(id+1, 1);
}
cout << ans;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
3 ms |
8796 KB |
Output is correct |
2 |
Correct |
2 ms |
8796 KB |
Output is correct |
3 |
Correct |
2 ms |
8796 KB |
Output is correct |
4 |
Correct |
260 ms |
19640 KB |
Output is correct |
5 |
Correct |
138 ms |
18172 KB |
Output is correct |
6 |
Runtime error |
141 ms |
34268 KB |
Execution killed with signal 11 |
7 |
Correct |
228 ms |
18932 KB |
Output is correct |
8 |
Correct |
201 ms |
19128 KB |
Output is correct |
9 |
Correct |
303 ms |
19936 KB |
Output is correct |
10 |
Correct |
244 ms |
19856 KB |
Output is correct |