/ SeriousOJ /

Record Detail

Memory Exceeded


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 320.0 KiB
#2 Accepted 1ms 532.0 KiB
#3 Accepted 3ms 804.0 KiB
#4 Accepted 62ms 8.324 MiB
#5 Accepted 69ms 8.234 MiB
#6 Accepted 69ms 8.316 MiB
#7 Memory Exceeded ≥821ms ≥128.016 MiB
#8 Memory Exceeded ≥813ms ≥128.016 MiB
#9 Memory Exceeded ≥289ms ≥128.016 MiB
#10 Memory Exceeded ≥638ms ≥128.016 MiB
#11 Memory Exceeded ≥627ms ≥128.016 MiB
#12 Memory Exceeded ≥608ms ≥128.016 MiB
#13 Memory Exceeded ≥602ms ≥128.016 MiB
#14 Accepted 29ms 2.52 MiB
#15 Memory Exceeded ≥763ms ≥128.016 MiB

Code

#include<bits/stdc++.h>
#define endl        '\n'
#define F           first
#define S           second
#define pb          push_back
#define yes         cout<<"YES\n"
#define no          cout<<"NO\n"
#define all(x)      x.begin(),x.end()
#define allr(x)     x.rbegin(),x.rend()
#define error1(x)   cerr<<#x<<" = "<<(x)<<endl
#define error2(a,b) cerr<<"("<<#a<<", "<<#b<<") = ("<<(a)<<", "<<(b)<<")\n";
#define coutall(v)  for(auto &it: v) cout << it << " "; cout << endl;
using namespace std;
using ll = long long;
using ld = long double;

const int mod = 1e9 + 7;

void solve() {
    ll n, k, cnt0 = 0;
    cin >> n >> k;
    vector<bool> v(n);
    for (int i = 0; i < n; i++) {
        bool x; cin >> x;
        v[i] = x;
        cnt0 += x;
    }
    
    vector<vector<ll>> dp(n + 1, vector<ll> (n + 1, -1));
    auto rec = [&](int i, int cnt, auto&& self) -> ll {
        if(i == n) return 0;
        ll &ans = dp[i][cnt];
        if(ans != -1) return ans;
        ans = self(i + 1, cnt, self); // not take
        if(v[i]) ans += (cnt - 1 >= k) + self(i + 1, cnt - 1, self);
        else ans += (cnt >= k) + self(i + 1, cnt, self);
        ans %= mod;
        ans += mod;
        return ans %= mod;
    };

    cout << rec(0, cnt0, rec) << endl;
    return;
}

signed main() {
    ios::sync_with_stdio(false); cin.tie(0);
    int tc = 1;
    cin >> tc;
    for (int t = 1; t <= tc; t++) {
        // cout << "Case " << t << ": ";
        solve();
    }
    return 0;
}

Information

Submit By
Type
Submission
Problem
P1093 Number of Ways (Easy version)
Contest
Brain Booster #5
Language
C++20 (G++ 13.2.0)
Submit At
2024-09-05 16:20:35
Judged At
2024-10-03 13:07:50
Judged By
Score
21
Total Time
≥821ms
Peak Memory
≥128.016 MiB