# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
335632 | Joshc | Vudu (COCI15_vudu) | C++11 | 324 ms | 31796 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <cstdio>
#include <vector>
#include <algorithm>
using namespace std;
#define ll long long
#define f first
#define s second
ll l[1000001];
int bit[1000001], m[1000001];
int main() {
ll n, p, count=1, ans=0;
scanf("%lld", &n);
for (int i=1; i<=n; i++) scanf("%lld", &l[i]);
scanf("%lld", &p);
l[0] = 0;
for (int i=1; i<=n; i++) l[i] = l[i-1]+l[i]-p;
vector<pair<ll, int> > arr;
for (int i=0; i<=n; i++) arr.emplace_back(l[i], i);
sort(arr.begin(), arr.end());
m[arr[0].s] = 1;
for (int i=1; i<=n; i++) {
if (arr[i].f != arr[i-1].f) count++;
m[arr[i].s] = count;
}
for (int i=n; i>=0; i--) {
for (int j=m[i]; j<=n; j+=j&-j) bit[j]++;
for (int j=m[i]-1; j>0; j-=j&-j) ans += bit[j];
}
printf("%lld\n", n*(n+1)/2-ans);
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |