結果
問題 | No.978 Fibonacci Convolution Easy |
ユーザー | le_panda_noir |
提出日時 | 2020-02-20 12:36:35 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 27 ms / 2,000 ms |
コード長 | 3,758 bytes |
コンパイル時間 | 1,129 ms |
コンパイル使用メモリ | 111,128 KB |
実行使用メモリ | 19,072 KB |
最終ジャッジ日時 | 2024-10-08 18:49:31 |
合計ジャッジ時間 | 2,260 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
5,248 KB |
testcase_01 | AC | 12 ms
9,600 KB |
testcase_02 | AC | 8 ms
6,528 KB |
testcase_03 | AC | 26 ms
18,432 KB |
testcase_04 | AC | 8 ms
7,256 KB |
testcase_05 | AC | 4 ms
5,248 KB |
testcase_06 | AC | 11 ms
8,704 KB |
testcase_07 | AC | 17 ms
13,052 KB |
testcase_08 | AC | 12 ms
9,984 KB |
testcase_09 | AC | 20 ms
14,540 KB |
testcase_10 | AC | 25 ms
19,072 KB |
testcase_11 | AC | 10 ms
7,740 KB |
testcase_12 | AC | 4 ms
5,248 KB |
testcase_13 | AC | 11 ms
8,576 KB |
testcase_14 | AC | 5 ms
5,248 KB |
testcase_15 | AC | 12 ms
9,312 KB |
testcase_16 | AC | 27 ms
19,072 KB |
testcase_17 | AC | 27 ms
19,020 KB |
testcase_18 | AC | 2 ms
5,248 KB |
testcase_19 | AC | 2 ms
5,248 KB |
testcase_20 | AC | 2 ms
5,248 KB |
ソースコード
#include <iostream> #include <algorithm> #include <vector> #include <queue> #include <cmath> #include <functional> #include <iomanip> using namespace std; using ll = long long; using pii = pair<int, int>; using vi = vector<int>; using vvi = vector<vi>; // #define rep(i,n) for(int i=0;i<(n);++i) #define all(f,c,...) (([&](decltype((c)) cccc) { return (f)(begin(cccc), end(cccc), ## __VA_ARGS__); })(c)) #define _overload3(_1,_2,_3,name,...) name #define _rep(i,n) for(int i=0;i<(n);++i) #define repi(i,a,b) for(int i=(a);i<(b);++i) #define rep(...) _overload3(__VA_ARGS__,repi,_rep,)(__VA_ARGS__) #define _fromto2(i,n) for(int i=0;i<=(n);++i) #define _fromto3(i,a,b) for(int i=(a);i<=(b);++i) #define fromto(...) _overload3(__VA_ARGS__,_fromto3,_fromto2,)(__VA_ARGS__) #define rrep(i,n) for(int i=(n);i>=0;--i) const int MOD = 1e9+7; const int INF = 1e9; const int dx[4]={1,0,-1,0}, dy[4]={0,1,0,-1}; template<class T>bool chmax(T &a,const T &b){if(a<b){a=b;return 1;}return 0;} template<class T>bool chmin(T &a,const T &b){if(b<a){a=b;return 1;}return 0;} // debug template<class T>ostream& operator<<(ostream& os,const vector<T>& vec){os<<"{";for(int i=0;i<vec.size();++i)os<<(i?", ":"")<<vec[i];os<<"}";return os;} template<class T1,class T2>ostream& operator<<(ostream& os,const pair<T1,T2>& rhs){os<<"("<<rhs.first<<", "<<rhs.second<<")";return os;} #ifdef LOCAL void debug() {cerr << "\n";} template<class First> void debug(const First& first) {cerr<<first<<"\n";} template<class First, class... Rest> void debug(const First& first, const Rest&... rest) {cerr<<first<<",";debug(rest...);} #else #define debug(...) 42 #endif template<int MOD> struct Fp { long long val; constexpr Fp(long long v = 0) noexcept : val(v % MOD) { if (val < 0) val += MOD; } constexpr int getmod() { return MOD; } constexpr Fp operator - () const noexcept { return val ? MOD - val : 0; } constexpr Fp operator + (const Fp& r) const noexcept { return Fp(*this) += r; } constexpr Fp operator - (const Fp& r) const noexcept { return Fp(*this) -= r; } constexpr Fp operator * (const Fp& r) const noexcept { return Fp(*this) *= r; } constexpr Fp operator / (const Fp& r) const noexcept { return Fp(*this) /= r; } constexpr Fp& operator += (const Fp& r) noexcept { val += r.val; if (val >= MOD) val -= MOD; return *this; } constexpr Fp& operator -= (const Fp& r) noexcept { val -= r.val; if (val < 0) val += MOD; return *this; } constexpr Fp& operator *= (const Fp& r) noexcept { val = val * r.val % MOD; return *this; } constexpr Fp& operator /= (const Fp& r) noexcept { long long a = r.val, b = MOD, u = 1, v = 0; while (b) { long long t = a / b; a -= t * b; swap(a, b); u -= t * v; swap(u, v); } val = val * u % MOD; if (val < 0) val += MOD; return *this; } constexpr bool operator == (const Fp& r) const noexcept { return this->val == r.val; } constexpr bool operator != (const Fp& r) const noexcept { return this->val != r.val; } friend constexpr ostream& operator << (ostream &os, const Fp<MOD>& x) noexcept { return os << x.val; } friend constexpr Fp<MOD> modpow(const Fp<MOD> &a, long long n) noexcept { if (n == 0) return 1; auto t = modpow(a, n / 2); t = t * t; if (n & 1) t = t * a; return t; } }; using mint = Fp<MOD>; int main() { int N, _p; cin >> N >> _p; mint p(_p); mint A[N]; A[0] = 0; A[1] = 1; rep(i, N-2) { A[i+2] = p * A[i+1] + A[i]; } mint ans = 0; mint acc; rep(i, N) { acc += A[i]; ans += A[i] * acc; } cout << ans << endl; return 0; }