#include <bits/stdc++.h> using namespace std; typedef long long ll; constexpr int MOD = 1e9 + 7; constexpr int MAX_N = 3e5 + 7; int tab[MAX_N]; ll sumy_prefiksowe_od_konca[MAX_N]; int wynik[MAX_N]; int main() { ios_base::sync_with_stdio(false), cin.tie(NULL); int n; cin >> n; for (int i = 1; i <= n; ++i) cin >> tab[i]; int reszta; for (int i = n; i >= 1; --i) { sumy_prefiksowe_od_konca[i] = sumy_prefiksowe_od_konca[i+1] + tab[i]; reszta = sumy_prefiksowe_od_konca[i] % MOD; if (reszta % 2 == 0) { ++wynik[i]; wynik[i] %= MOD; } for (int j = i+1; j <= n; ++j) { reszta = (sumy_prefiksowe_od_konca[i] - sumy_prefiksowe_od_konca[j]) % MOD; if (reszta % 2 == 0) { wynik[i] += wynik[j]; wynik[i] %= MOD; } } } cout << wynik[1] << '\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 35 36 37 38 39 40 41 42 | #include <bits/stdc++.h> using namespace std; typedef long long ll; constexpr int MOD = 1e9 + 7; constexpr int MAX_N = 3e5 + 7; int tab[MAX_N]; ll sumy_prefiksowe_od_konca[MAX_N]; int wynik[MAX_N]; int main() { ios_base::sync_with_stdio(false), cin.tie(NULL); int n; cin >> n; for (int i = 1; i <= n; ++i) cin >> tab[i]; int reszta; for (int i = n; i >= 1; --i) { sumy_prefiksowe_od_konca[i] = sumy_prefiksowe_od_konca[i+1] + tab[i]; reszta = sumy_prefiksowe_od_konca[i] % MOD; if (reszta % 2 == 0) { ++wynik[i]; wynik[i] %= MOD; } for (int j = i+1; j <= n; ++j) { reszta = (sumy_prefiksowe_od_konca[i] - sumy_prefiksowe_od_konca[j]) % MOD; if (reszta % 2 == 0) { wynik[i] += wynik[j]; wynik[i] %= MOD; } } } cout << wynik[1] << '\n'; return 0; } |