# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
62755 | leejseo | XCorr (KOI18_XCorr) | C++11 | 299 ms | 229212 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
const int MAXN = 300000;
typedef long long lld;
lld S[MAXN+1], X[MAXN+1]; // S : prefix sum
vector<int> CX, CY;
int N, M, a, b;
void input(){
scanf("%d", &N);
CX.resize(N);
for (int i=0; i<N; i++){
int x, y;
scanf("%d%d", &x, &y);
X[i] = y;
CX[i] = x;
}
scanf("%d", &M);
CY.resize(M);
for (int i=0; i<M; i++){
int x, y;
scanf("%d%d", &x, &y);
CY[i] = x;
S[i+1] = S[i] + y;
}
scanf("%d", &a);
scanf("%d", &b);
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |