# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
62759 | jjwdi0 | XCorr (KOI18_XCorr) | C++11 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
using pr = pair<int, int>;
using ll = long long;
int N, M, idx[300005];
ll sum[300005]
vector<pr> v;
ll ans;
int main() {
scanf("%d", &N);
for(int i=0, x, y; i<N; i++) {
scanf("%d %d", &x, &y);
sum[i+1] = 1LL * y;
idx[i+1] = x;
}
scanf("%d", &M);
for(int i=0, x, y; i<M; i++) {
scanf("%d %d", &x, &y);
v.push_back(pr(x, y));
}
int s, e;
scanf("%d %d", &s, &e);
for(int i=1; i<=N; i++) {
sum[i] += sum[i-1];
}
for(auto it : v) {
int idx1 = lower_bound(idx+1, idx+N+1, it.first + s) - idx,
idx2 = upper_bound(idx+1, idx+N+1, it.first + e) - idx;
ans += 1LL * (1LL * sum[idx2-1] - 1LL * sum[idx1-1]) * it.second;
}
printf("%lld\n", ans);
}