Submission #290309

# Submission time Handle Problem Language Result Execution time Memory
290309 2020-09-03T15:44:40 Z Hehehe Calvinball championship (CEOI15_teams) C++14
0 / 100
408 ms 568 KB
#include<bits/stdc++.h> //:3
using namespace std;
typedef long long ll;
#define all(a) (a).begin(), (a).end()
#define ff first
#define ss second
#define pb push_back
#define mp make_pair
#define pi pair<int, int>
#define sz(x) (int)((x).size())
//#define int long long

const int dx[] = {0, 1, 0, -1};
const int dy[] = {1, 0, -1, 0};

const ll inf = 2e9;
const ll mod = 1e9 + 7;
const int N = 2e4 + 11;
const int X = 1e6;
const ll INF64 = 3e18 + 1;
const double eps = 1e-14;
const double PI = acos(-1);

//ifstream in(".in");
//ofstream out(".out");

int n, a[N], dp[2][N], mx[N];

void solve(){

    cin >> n;

    for(int i = 1; i <= n; i++){
        cin >> a[i];
        mx[i] = max(mx[i - 1], a[i]);
    }

    //dp[i][j] - ways of choosing i more elements having j as the maximum element in our subsequence

    for(int i = 0; i <= n; i++){
        dp[0][i] = 1; //one way of adding 0 elements
    }

    int ans = a[n], t = 1;

    for(int i = 1; i < n; i++){//from the end to the start

        for(int j = 1; j <= n; j++){
            dp[t][j] = (dp[1 - t][j + 1] + dp[1 - t][j]*j % mod + mod) % mod;
        }

        //dp[t][j] == dp[i][j]
        //dp[1 - t][j] == dp[i - 1][j]

        ans = (ans + dp[t][mx[n - i - 1]] * a[n - i] % mod + mod) % mod;

        t = 1 - t;

    }

    cout << ans << '\n';
}

int32_t main(){
ios_base :: sync_with_stdio(0); cin.tie(0); cout.tie(0);

    //cout << setprecision(6) << fixed;

    int T = 1;
    //cin >> T;
    while(T--){
        solve();
    }
}
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 384 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 288 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 384 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 384 KB Output isn't correct
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 384 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 384 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 6 ms 384 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 403 ms 560 KB Output isn't correct
# Verdict Execution time Memory Grader output
1 Incorrect 104 ms 504 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 408 ms 568 KB Output isn't correct
2 Halted 0 ms 0 KB -