# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
968016 |
2024-04-23T06:56:07 Z |
jadai007 |
Vudu (COCI15_vudu) |
C++14 |
|
207 ms |
22668 KB |
#include<bits/stdc++.h>
using namespace std;
int n, arr[1000100] , fw[2200100];
long long qs[1000100], k;
vector<int> v;
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;
for(int i = 1; i<=n; ++i) cin >> arr[i];
cin >> k;
for(int i = 1; i<=n; ++i) qs[i] = qs[i - 1] + arr[i];
for(int i = 0; i<=n; ++i) v.push_back(qs[i] - i*k);
sort(v.begin(), v.end());
v.erase(unique(v.begin(), v.end()));
//update(1, 1);
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 |
2 ms |
2652 KB |
Output is correct |
2 |
Correct |
2 ms |
2652 KB |
Output is correct |
3 |
Correct |
2 ms |
2652 KB |
Output is correct |
4 |
Incorrect |
186 ms |
22336 KB |
Output isn't correct |
5 |
Incorrect |
111 ms |
14668 KB |
Output isn't correct |
6 |
Incorrect |
164 ms |
21556 KB |
Output isn't correct |
7 |
Incorrect |
165 ms |
21548 KB |
Output isn't correct |
8 |
Incorrect |
162 ms |
16732 KB |
Output isn't correct |
9 |
Incorrect |
207 ms |
22668 KB |
Output isn't correct |
10 |
Incorrect |
164 ms |
21936 KB |
Output isn't correct |