# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
211631 | MetB | Calvinball championship (CEOI15_teams) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
using namespace __gnu_pbds;
#define N 2000001
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
const ll INF = 1e18, MOD = 1e9 + 7, MOD2 = 1e6 + 3;
ll ans = 1, d[10001][2], a[N], n, mx[N];
int main () {
cin >> n;
for (int i = 0; i < n; i++) {
cin >> a[i];
mx[i] = a[i];
if (i) mx[i] = max (mx[i], mx[i-1]);
}
for (int i = 0; i <= n; i++) {
d[i][0] = 1;
}
for (int i = n - 1; i >= 0; i--) {
int k = ((n - i) & 1);
for (ll j = 0; j < n; j++) {
d[j][k] = (j * d[j][!k] % MOD + d[j+1][!k]) % MOD;
}
ans += (a[i] - 1) * d[i ? mx[i-1] : 0LL][!k] % MOD;
wgile (ans >= MOD) ans -= MOD;
}
cout << ans;
}