#include <iostream> #include <vector> #include <algorithm> using namespace std; const long long MOD = 1000000007; int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int n; cin >> n; vector<int>A(n); for(int &x : A) cin >> x; sort(A.begin(), A.end()); vector<long long>Tab(5000); Tab[0]=1; for(int x : A){ for(int s=4999;s>=x-1;s--){ Tab[min(x+s, 4999)] += Tab[s]; Tab[min(x+s, 4999)] %= MOD; } } long long result=0; for(int i=1;i<5000;i++) result += Tab[i]; cout << result%MOD << "\n"; return 0; }
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 32 33 34 | #include <iostream> #include <vector> #include <algorithm> using namespace std; const long long MOD = 1000000007; int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int n; cin >> n; vector<int>A(n); for(int &x : A) cin >> x; sort(A.begin(), A.end()); vector<long long>Tab(5000); Tab[0]=1; for(int x : A){ for(int s=4999;s>=x-1;s--){ Tab[min(x+s, 4999)] += Tab[s]; Tab[min(x+s, 4999)] %= MOD; } } long long result=0; for(int i=1;i<5000;i++) result += Tab[i]; cout << result%MOD << "\n"; return 0; } |