D. Mahmoud and Ehab and another array construction task 因子分解模板 题意 给出一个原序列a 找出一个字典序大于a的序列b,使得任意 \(i!=j\),\(gcd(a[i],a[j])==1\),现在要你找出这样的序列b,并且满足所有合法序列中输出字典序最小的那个 思路 维护一个set,set里面装所有当前可以取的合法元素,先把所有的数字放进set里面,因为要求字典序最小的序列b,并且b的字典序要大于a,当构造的b到当前位置截止时和a相同时…
ACM常用模板合集 #include <bits/stdc++.h> using namespace std; typedef long long ll; ll pr; ll pmod(ll a, ll b, ll p) { return (a * b - (ll)((long double)a / p * b) * p + p) % p; } //普通的快速乘会T ll gmod(ll a, ll b, ll p) { ll res = 1; while (b) { if (b &…
$O(n)$递推求逆元 #include<cstdio> #include<cstring> #include<algorithm> using namespace std; typedef long long ll; ]; int main(){ int n,p; scanf("%d%d",&n,&p); inv[]=; printf("1\n"); ;i<=n;i++){ inv[i]=(ll)(p-p/…