#include <bits/stdc++.h>
#define N 10001
using namespace std;
typedef long long ll;
int n, k, v[N], tot, used[N], mod = 1000007;
int dp[2][N], pref[N];
int solve(int i, int k)
{
if(i > n) return 1;
if(dp[i][k] != -1) return dp[i][k];
ll A = (((ll)solve(i + 1, k) * (ll)k) % mod + solve(i + 1, k + 1) % mod)%mod;
return dp[i][k] = A;
}
inline int pos()
{
set<int> add;
for(int i = 1; i <= n; i++)
{
pref[i] = add.size();
add.insert(v[i]);
}
int A = (n + 1)%2, B = n%2;
for(int i = n + 1; i >= 1; i--)
{
if(i >= 2)
{
for(int k = i; k >= 1; k--)
{
if(i > n) dp[A][k] = 1;
else
{
dp[A][k] = ((ll)k * dp[B][k])%mod;
dp[A][k] += dp[B][k + 1];
if(dp[A][k] >= mod) dp[A][k] -= mod;
}
}
}
if(i <= n)
{
tot = (tot + dp[B][ pref[i] ]*(v[i] - 1LL))%mod;
}
swap(A, B);
}
return (tot + 1)%mod;
}
int main()
{
ios::sync_with_stdio(false); cin.tie(0);
cin>>n;
for(int i = 1; i <= n; i++) cin>>v[i];
cout<<pos()<<"\n";
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
248 KB |
Output is correct |
2 |
Correct |
2 ms |
356 KB |
Output is correct |
3 |
Correct |
2 ms |
392 KB |
Output is correct |
4 |
Correct |
3 ms |
468 KB |
Output is correct |
5 |
Correct |
2 ms |
544 KB |
Output is correct |
6 |
Correct |
2 ms |
560 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
560 KB |
Output is correct |
2 |
Correct |
2 ms |
560 KB |
Output is correct |
3 |
Correct |
3 ms |
560 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
612 KB |
Output is correct |
2 |
Correct |
2 ms |
616 KB |
Output is correct |
3 |
Correct |
3 ms |
616 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
616 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
616 KB |
Output is correct |
2 |
Correct |
2 ms |
616 KB |
Output is correct |
3 |
Correct |
3 ms |
616 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
6 ms |
620 KB |
Output is correct |
2 |
Correct |
4 ms |
620 KB |
Output is correct |
3 |
Correct |
5 ms |
620 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
10 ms |
620 KB |
Output is correct |
2 |
Correct |
11 ms |
656 KB |
Output is correct |
3 |
Correct |
11 ms |
656 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
812 ms |
1248 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
197 ms |
1248 KB |
Output is correct |
2 |
Correct |
204 ms |
1248 KB |
Output is correct |
3 |
Correct |
237 ms |
1248 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
831 ms |
1248 KB |
Output is correct |
2 |
Correct |
843 ms |
1248 KB |
Output is correct |
3 |
Correct |
803 ms |
1464 KB |
Output is correct |