# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
967916 |
2024-04-23T05:12:55 Z |
njoop |
Vudu (COCI15_vudu) |
C++14 |
|
392 ms |
65536 KB |
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
#include <bits/stdc++.h>
#define ll long long
using namespace __gnu_pbds;
using namespace std;
typedef tree<ll, null_type, less_equal<ll>, rb_tree_tag,
tree_order_statistics_node_update>
ordered_multiset;
ordered_multiset s;
int n, p;
ll arr[1000010], dp[1000010], ans;
int main() {
cin.tie(0)->sync_with_stdio(0);
cin >> n;
for(int i=1; i<=n; i++) {
cin >> arr[i];
}
cin >> p;
for(int i=n; i>0; i--) {
arr[i] -= p;
dp[i] = arr[i] + dp[i+1];
}
for(int i=1; i<=n; i++) {
s.insert(dp[i]);
ans += s.size() - s.order_of_key(dp[i+1]);
}
cout << ans;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
3 ms |
2908 KB |
Output is correct |
2 |
Correct |
2 ms |
2856 KB |
Output is correct |
3 |
Correct |
2 ms |
2908 KB |
Output is correct |
4 |
Runtime error |
392 ms |
65536 KB |
Execution killed with signal 9 |
5 |
Correct |
244 ms |
45212 KB |
Output is correct |
6 |
Runtime error |
350 ms |
65536 KB |
Execution killed with signal 9 |
7 |
Runtime error |
345 ms |
65536 KB |
Execution killed with signal 9 |
8 |
Correct |
363 ms |
62804 KB |
Output is correct |
9 |
Runtime error |
349 ms |
65536 KB |
Execution killed with signal 9 |
10 |
Runtime error |
353 ms |
65536 KB |
Execution killed with signal 9 |