#include <iostream>
#include <algorithm>
#include <cstring>
#include <sstream>
#include <map>
#include <queue>
#include <vector>
#include <deque>
#include <climits>
#define scanf scanf_s
#define mk make_pair
#define pb push_back
using namespace std;
typedef long long int ll;
typedef pair<ll, ll> pos;
const ll MOD = 1000000007, N = 1010.;
ll n, a[N], ans = 0,dp[N][N],dp2[N][N];
ll cal(ll lgt, ll knd) {
return dp[lgt][knd];
}
int main() {
for (int i = 1; i < N; i++) { dp[1][i] = i; dp2[1][i] = 1; dp[0][i] = 1; }
for (int i = 2; i < N; i++) {
for (int j = 1; j < N - 1; j++) {
dp[i][j] = (dp[i - 1][j] * j + dp2[i - 1][j + 1]) % MOD;
dp2[i][j] = (dp2[i - 1][j] * j + dp2[i - 1][j + 1]) % MOD;
}
}
cin >> n;
for (int i = 1; i <= n; i++)cin >> a[i];
ll knd = 0;
for (int i = 1; i <= n; i++) {
ll v1 = (a[i] - 1) * cal(n - i, knd + 1);
v1 %= MOD;
ans = (ans + v1) % MOD;
knd = max(knd, a[i]);
}
ans = (ans + 1) % MOD;
cout << ans << endl;
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
19 ms |
16128 KB |
Output is correct |
2 |
Correct |
18 ms |
16316 KB |
Output is correct |
3 |
Correct |
20 ms |
16248 KB |
Output is correct |
4 |
Correct |
19 ms |
16256 KB |
Output is correct |
5 |
Correct |
17 ms |
16256 KB |
Output is correct |
6 |
Correct |
18 ms |
16256 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
16 ms |
16256 KB |
Output is correct |
2 |
Incorrect |
18 ms |
16256 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
16 ms |
16256 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
17 ms |
16256 KB |
Output isn't correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
15 ms |
16256 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
24 ms |
16256 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
18 ms |
16256 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
18 ms |
16256 KB |
Output isn't correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
20 ms |
16344 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
21 ms |
16332 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |