# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
110823 | baneling100 | Boat (APIO16_boat) | C++11 | 2 ms | 256 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.
/* without consideration of time complexity */
#include <cstdio>
#include <algorithm>
#define MOD 1000000007
using namespace std;
pair <int, pair <int, int> > P[1001];
int N, A[501], B[501]; // left and right location of C
int M, C[1001]; // have pressed coordination
int D0[501], D1[501][1001], Ans;
int main() {
freopen("input.txt", "r", stdin);
int x, y;
scanf("%d ", &N);
for(int i = 1; i <= N; i++) {
scanf("%d %d ", &x, &y);
x--;
P[2 * i - 1] = make_pair(x, make_pair(i, -1));
P[2 * i ] = make_pair(y, make_pair(i, 1));
}
sort(P + 1, P + 2 * N + 1);
P[0].first = -1;
for(int i = 1; i <= 2 * N; i++) {
if(P[i].first != P[i - 1].first)
C[++M] = P[i].first;
if(P[i].second.second == -1) // left
A[P[i].second.first] = M;
else // right
B[P[i].second.first] = M;
}
// init is not yet defined
D0[0] = 1;
for(int i = 1; i <= N; i++) {
D0[i] = D0[i - 1];
for(int j = 2; j <= M; j++) {
D0[i] += D1[i - 1][j];
D0[i] %= MOD;
}
for(int j = A[i] + 1; j <= B[i]; j++) {
D1[i][j] = C[j] - C[j - 1]; // nothing
long long sum = 0;
for(int k = 1; k < j; k++)
for(int l = 2; l <= A[i]; l++) {
sum += D1[k][l];
sum %= MOD;
}
sum *= C[j] - C[j - 1];
sum %= MOD;
D1[i][j] += sum;
D1[i][j] %= MOD;
}
}
Ans = D0[N];
for(int i = 2; i <= M; i++) {
Ans += D1[N][i];
Ans %= MOD;
}
printf("%d\n", Ans);
return 0;
}
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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |