# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
424503 | cpp219 | Calvinball championship (CEOI15_teams) | C++14 | 21 ms | 16660 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.
#pragma GCC optimization "O2"
#pragma GCC optimization "unroll-loop"
#pragma GCC target ("avx2")
#include <bits/stdc++.h>
#define ll long long
#define ld long double
#define fs first
#define sc second
using namespace std;
const ll N = 1e3 + 9;
const ll mod = 1e6 + 7;
typedef pair<ll,ll> LL;
ll n,x,dp[N][N],ans = 1;
ll f(ll pos,ll lim){
if (pos == n + 1) return 1;
if (pos == n) return lim;
if (dp[pos][lim] != -1) return dp[pos][lim];
ll ans = 0;
ans = ((lim - 1)*f(pos + 1,lim)) % mod + f(pos + 1,lim + 1);
ans %= mod;
return dp[pos][lim] = ans;
}
int main(){
ios_base::sync_with_stdio(0);
cin.tie(0), cout.tie(0);
#define task "test"
if (fopen(task".inp", "r")){
freopen(task".inp", "r", stdin);
//freopen(task".out", "w", stdout);
}
cin>>n; memset(dp,-1,sizeof(dp));
ll mx = 0; //cout<<f(3,2); return 0;
for (ll i = 1;i <= n;i++){
cin>>x; mx = max(mx,x);
ans += (x - 1)*f(i + 1,mx); ans %= mod;
//cout<<(x - 1)*f(i + 1,mx)<<"x\n";
}
cout<<ans;
}
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... |
# | 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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |