# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
380255 | vishesh312 | Vudu (COCI15_vudu) | C++17 | 737 ms | 65540 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "bits/stdc++.h"
using namespace std;
using ll = long long;
#include <ext/pb_ds/assoc_container.hpp>
using namespace __gnu_pbds;
using ordered_set = tree<int, null_type, less_equal<int>, rb_tree_tag, tree_order_statistics_node_update>;
#define all(x) begin(x), end(x)
#define sz(x) (int)x.size()
const int mod = 1e9+7;
void solve(int tc) {
int n;
cin >> n;
pair<ll, int> v[n+1];
v[0] = {0, 0};
for (int i = 1; i <= n; ++i) {
cin >> v[i].first;
v[i].second = i;
}
int a[n+1];
ll p;
cin >> p;
for (int i = 1; i <= n; ++i) {
v[i].first += v[i-1].first - p;
}
sort(v, v+n+1);
ll cur = 0;
for (int i = 0; i <= n; ++i) {
if (i) if (v[i].first == v[i-1].first) --cur;
a[v[i].second] = cur;
++cur;
}
ll ans = 0;
ordered_set s;
s.insert(a[0]-1);
for (int i = 1; i <= n; ++i) {
ans += s.order_of_key(a[i]);
s.insert(a[i]-1);
}
cout << ans << '\n';
}
signed main() {
ios_base::sync_with_stdio(false); cin.tie(NULL);
int tc = 1;
//cin >> tc;
for (int i = 1; i <= tc; ++i) solve(i);
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |