Submission #121251

#TimeUsernameProblemLanguageResultExecution timeMemory
121251BTheroFibonacci representations (CEOI18_fib)C++17
15 / 100
4070 ms1936 KiB
// Why am I so dumb? :c // chrono::system_clock::now().time_since_epoch().count() //#pragma GCC optimize("Ofast") //#pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,tune=native") #include<bits/stdc++.h> #include<ext/pb_ds/assoc_container.hpp> #include<ext/pb_ds/tree_policy.hpp> #define pb push_back #define mp make_pair #define all(x) (x).begin(), (x).end() #define fi first #define se second using namespace std; using namespace __gnu_pbds; typedef long long ll; template<typename T> using ordered_set = tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>; const int MOD = (int)1e9 + 7; int dp[2][100005]; int n; int addMod(int a, int b, int m = MOD) { a += b; if (m <= a) { a -= m; } return a; } int mulMod(int a, int b, int m = MOD) { return a * 1ll * b % m; } int binPow(int a, int b) { int ret = 1; while (b > 0) { if (b & 1) { ret = mulMod(ret, a); } a = mulMod(a, a); b >>= 1; } return ret; } void solve() { scanf("%d", &n); int ans = 1; set<int> S; S.insert(0); for (int i = 1; i <= n; ++i) { int x; scanf("%d", &x); S.insert(x); dp[0][0] = 1; int prev = 0, ptr = 0; for (int cur : S) { ++ptr; dp[0][ptr] = addMod(dp[0][ptr - 1], dp[1][ptr - 1]); dp[1][ptr] = mulMod(dp[0][ptr - 1], (cur - prev - 1) / 2); dp[1][ptr] = addMod(dp[1][ptr], mulMod(dp[1][ptr - 1], (cur - prev) / 2)); prev = cur; } printf("%d\n", addMod(dp[0][ptr], dp[1][ptr])); } } int main() { int tt = 1; while (tt--) { solve(); } return 0; }

Compilation message (stderr)

fib.cpp: In function 'void solve()':
fib.cpp:62:9: warning: unused variable 'ans' [-Wunused-variable]
     int ans = 1;
         ^~~
fib.cpp:61:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     scanf("%d", &n);
     ~~~~~^~~~~~~~~~
fib.cpp:69:14: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
         scanf("%d", &x);
         ~~~~~^~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...