Write an API that generates fancy sequences using the append, addAll, and multAll operations.
Implement the Fancy class:
Fancy() Initializes the object with an empty sequence.
void append(val) Appends an integer val to the end of the sequence.
void addAll(inc) Increments all existing values in the sequence by an integer inc.
void multAll(m) Multiplies all existing values in the sequence by an integer m.
int getIndex(idx) Gets the current value at index idx (0-indexed) of the sequence modulo 109 + 7. If the index is greater or equal than the length of the sequence, return -1.
classFancy { long m = 1, p = 0, mod = 1e9 + 7; vector<array<long,3>> A; longmodPow(long n, long x){ if(x == 1) return n; long res = modPow(n, x>>1); res = (res * res) % mod; if(x & 1) res = (res * n) % mod; return res; } public: Fancy() { } voidappend(int val){ A.push_back({val, m, p}); } voidaddAll(int inc){ p = (p + inc) % mod; } voidmultAll(int mul){ m = (m * mul) % mod; p = (p * mul) % mod; } intgetIndex(int idx){ if(A.size() <= idx) return-1; auto [n, multi, plus] = A[idx]; auto eval = m * modPow(multi, mod - 2) % mod; return (eval * (mod + n - plus) % mod + p) % mod; } };
/** * Your Fancy object will be instantiated and called as such: * Fancy* obj = new Fancy(); * obj->append(val); * obj->addAll(inc); * obj->multAll(m); * int param_4 = obj->getIndex(idx); */