— It seems that there’s something wrong with Seniorious…
— I’ll have a look…
Seniorious is made by linking special talismans in particular order.
After over 500 years, the carillon is now in bad condition, so Willem decides to examine it thoroughly.
Seniorious has $ n $ pieces of talisman. Willem puts them in a line, the $ i $ -th of which is an integer $ a_{i} $ .
In order to maintain it, Willem needs to perform $ m $ operations.
There are four types of operations:
$ 1\ l\ r\ x $ : For each $ i $ such that $ l<=i<=r $ , assign $ a_{i}+x $ to $ a_{i} $ .
$ 2\ l\ r\ x $ : For each $ i $ such that $ l<=i<=r $ , assign $ x $ to $ a_{i} $ .
$ 3\ l\ r\ x $ : Print the $ x $ -th smallest number in the index range $ [l,r] $ , i.e. the element at the $ x $ -th position if all the elements $ a_{i} $ such that $ l<=i<=r $ are taken and sorted into an array of non-decreasing integers. It’s guaranteed that $ 1<=x<=r-l+1 $ .
$ 4\ l\ r\ x\ y $ : Print the sum of the $ x $ -th power of $ a_{i} $ such that $ l<=i<=r $ , modulo $ y $ , i.e. .
输入格式
The only line contains four integers $ n,m,seed,v_{max} $ ( $ 1<=n,m<=10^{5},0<=seed<10^{9}+7,1<=vmax<=10^{9} $ ).
The initial values and operations are generated using following pseudo code:
longlongpow(longlong x, longlong n, longlong m){ longlong ans = 1; longlong contribution = x % m; while (n > 0) { if (n % 2 == 1) ans = (ans * contribution) % m; contribution = (contribution * contribution) % m; n = n >> 1; } return ans; }
};
intmain(){ ChthollyTree tree; cin >> n >> m >> seed >> vmax; vector<longlong> a(n + 1); for (longlong i = 1; i <= n; i++) { a[i] = (rnd() % vmax) + 1; //cout << a[i] << " "; tree.insert(i, i, a[i]); } //test /*for (long long i = 1; i <= n; i++) { long long t; cin >> t; tree.insert(i, i, t); }*/ //test for (longlong i = 1; i <= m; i++) { longlong op = (rnd() % 4) + 1; longlong l = (rnd() % n) + 1; longlong r = (rnd() % n) + 1; if (l > r) swap(l, r); longlong x, y; if (op == 3) x = (rnd() % (r - l + 1)) + 1; else x = (rnd() % vmax) + 1; if (op == 4) y = (rnd() % vmax) + 1; //test /*cin >> op >> l >> r >> x; if (op == 4) cin >> y; */ //test if (op == 1) tree.add(l, r, x); if (op == 2) tree.assign(l, r, x); if (op == 3) cout << tree.kth(l, r, x) << endl; if (op == 4) cout << tree.sum_of_pow(l, r, x, y) << endl; } return0; }