Submission #62760

# Submission time Handle Problem Language Result Execution time Memory
62760 2018-07-30T02:11:52 Z jjwdi0 None (KOI18_XCorr) C++11
0 / 100
4 ms 488 KB
#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);
}

Compilation message

XCorr.cpp: In function 'int main()':
XCorr.cpp:12:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     scanf("%d", &N);
     ~~~~~^~~~~~~~~~
XCorr.cpp:14:14: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
         scanf("%d %d", &x, &y);
         ~~~~~^~~~~~~~~~~~~~~~~
XCorr.cpp:18:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     scanf("%d", &M);
     ~~~~~^~~~~~~~~~
XCorr.cpp:20:14: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
         scanf("%d %d", &x, &y);
         ~~~~~^~~~~~~~~~~~~~~~~
XCorr.cpp:24:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     scanf("%d %d", &s, &e);
     ~~~~~^~~~~~~~~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Correct 4 ms 376 KB Output is correct
2 Incorrect 4 ms 488 KB Output isn't correct
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 4 ms 376 KB Output is correct
2 Incorrect 4 ms 488 KB Output isn't correct
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 4 ms 376 KB Output is correct
2 Incorrect 4 ms 488 KB Output isn't correct
3 Halted 0 ms 0 KB -