#include <bits/stdc++.h> using namespace std; const int MOD = 1e9 + 7; int dp[5009]; int tab[5009]; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); dp[0] = 1; int n; cin >> n; for(int i=0;i<n;i++) cin >> tab[i]; sort(tab, tab+n); for(int i=0;i<n;i++) { for(int j=5001;j>=tab[i]-1;j--) { int nowy = min(5001, j+tab[i]); dp[nowy] += dp[j]; dp[nowy] %= MOD; } } int result = 0; for(int i=1;i<=5001;i++) { result += dp[i]; result%=MOD; } cout << result << "\n"; }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | #include <bits/stdc++.h> using namespace std; const int MOD = 1e9 + 7; int dp[5009]; int tab[5009]; int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); dp[0] = 1; int n; cin >> n; for(int i=0;i<n;i++) cin >> tab[i]; sort(tab, tab+n); for(int i=0;i<n;i++) { for(int j=5001;j>=tab[i]-1;j--) { int nowy = min(5001, j+tab[i]); dp[nowy] += dp[j]; dp[nowy] %= MOD; } } int result = 0; for(int i=1;i<=5001;i++) { result += dp[i]; result%=MOD; } cout << result << "\n"; } |