#include<iostream>usingnamespace std;constint N =1e5+10;int p[N],res[N];int n,Q,l,r,x;intmain(){cin >> n >> Q;for(int i =1;i <= n;++i){cin >> p[i];res[i]= p[i]- p[i -1];}while(Q--){cin >> l >> r >> x;res[l]+= x;res[r +1]-= x;}int tot =0;for(int i =1;i<=n;++i){tot += res[i];cout << tot <<' ';}return0;}
#include<iostream>usingnamespace std;constint N =1e6+10;int q[N],p[N];int n,len;intmain(){cin >> n >> len;for(int i =0;i < n;++i) cin >> p[i];int h,t;h =0,t =-1;for(int i =0;i < n;++i){while(h <= t && q[h]< i - len +1) h++;while(h <= t && p[q[t]]>= p[i]) t--;t++;q[t]= i;if(i >= len -1) cout << p[q[h]]<<' ';}cout << endl;h =0,t =-1;for(int i =0;i < n;++i){while(h <= t && q[h]< i - len +1) h++;while(h <= t && p[q[t]]<= p[i]) t--;t++;q[t]= i;if(i >= len -1) cout << p[q[h]]<<' ';}return0;}
(10)整数二分
#include<iostream>usingnamespace std;constint N =1e5+10;int p[N];int n,Q,x;intleftfind(int x){int l =1,r = n;while(l < r){int mid =(l + r)/2;if(p[mid]< x) l = mid +1;else r = mid;}if(p[l]== x)return l -1;elsereturn-1;}intrightfind(int x){int l =1,r = n;while(l < r){int mid =(l + r +1)/2;if(p[mid]> x) r = mid -1;else l = mid;}if(p[l]== x)return l -1;elsereturn-1;}intmain(){cin >> n >> Q;for(int i =1;i <= n;++i) cin >> p[i];while(Q--){cin >> x;cout <<leftfind(x)<<' ';cout <<rightfind(x)<< endl;}return0;}
2.数论
(1)快速幂
#include<iostream>usingnamespace std;typedeflonglong LL;int Q;LL qmi(LL a,LL b,LL mod){LL res =1;while(b){if(b&1) res = res * a % mod;a = a * a % mod;b = b >>1;}return res;}intmain(){cin >> Q;while(Q--){LL a,b,c;cin >> a >> b >> c;cout <<qmi(a,b,c)<< endl;}return0;}
(2)约数个数
#include<unordered_map>#include<iostream>usingnamespace std;unordered_map<int,int>q;
unordered_map<int,int>::iterator it;constint mod =1e9+7;typedeflonglong LL;voidhandle(int x){for(int i =2;i * i <= x;++i){if(x % i ==0){int cnt =0;while(x % i ==0){x = x / i;cnt++;}q[i]+= cnt;}}if(x >1) q[x]+=1;}int Q,x;
LL ans =1;intmain(){cin >> Q;while(Q--){cin >> x;handle(x);}for(it = q.begin();it != q.end();++it){int a = it->first;int b = it->second;LL res =1;for(int i =1;i <= b;++i){LL res =(res * a +1)% mod;}ans = ans * res % mod;}cout << ans << endl;}
(3)约数之和
#include<unordered_map>#include<iostream>usingnamespace std;unordered_map<int,int>q;
unordered_map<int,int>::iterator it;constint mod =1e9+7;typedeflonglong LL;voidhandle(int x){for(int i =2;i * i <= x;++i){if(x % i ==0){int cnt =0;while(x % i ==0){x = x / i;cnt++;}q[i]+= cnt;}}if(x >1) q[x]+=1;}int Q,x;
LL ans =1;intmain(){cin >> Q;while(Q--){cin >> x;handle(x);}for(it = q.begin();it != q.end();++it){int a = it->first;int b = it->second;LL res =1;while(b--){res =(res * a +1)% mod;}ans = ans * res % mod;}cout << ans << endl;return0;}
(4)组合数(一)
#include<iostream>usingnamespace std;typedeflonglong LL;constint mod =1e9+7;constint N =2005;int c[N][N];intmain(){for(int i =0;i < N;++i){for(int j =0;j <= i;++j){if(j ==0) c[i][j]=1;else c[i][j]=(c[i -1][j -1]+ c[i -1][j])% mod;}}int Q;cin >> Q;while(Q--){int a,b;cin >> a >> b;cout << c[a][b]<< endl;}return0;}
(5)组合数(二)
#include<iostream>usingnamespace std;constint N =1e5+5;constint mod =1e9+7;typedeflonglong LL;LL f[N],inf[N];LL qmi(LL a,LL b,LL mod){LL res =1;while(b){if(b &1) res = res * a % mod;a = a * a % mod;b = b >>1;}return res;}intmain(){f[0]= inf[0]=1;for(int i =1;i < N;++i){f[i]= f[i -1]* i % mod;inf[i]=qmi(f[i],mod -2,mod);}int Q,a,b;cin >> Q;while(Q--){cin >> a >> b;LL ans = f[a]* inf[b]% mod * inf[a - b]% mod;cout << ans << endl;}return0;}
#include<iostream>usingnamespace std;typedeflonglong LL;LL qmi(LL a,LL b,LL mod){LL res =1;while(b){if(b &1) res = res * a % mod;a = a * a % mod;b = b >>1;}return res;}intmain(){int Q;cin >> Q;while(Q--){LL a,p;cin >> a >> p;if(a % p ==0){cout <<"impossible"<< endl;continue;}cout <<qmi(a,p -2,p)<< endl;}return0;}
#include<iostream>usingnamespace std;typedeflonglong LL;LL euler(int x){LL res = x;for(int i =2;i * i <= x;++i){if(x % i ==0){res = res *(i -1)/ i;while(x % i ==0) x = x/i;}}if(x >1) res = res *(x -1)/ x;return res;}intmain(){int Q,x;cin >> Q;while(Q--){cin >> x;cout <<euler(x)<< endl;}return0;}
3.图论
(1)djistra
#include<iostream>#include<queue>#include<cstring>#include<vector>usingnamespace std;constint N =1e6+10;int dist[N];bool st[N];int ne[N],e[N],w[N],h[N],idx;int n,m;typedef pair<int,int>PII;
priority_queue<PII,vector<PII>,greater<PII>>q;voidadd(int a,int b,int c){e[idx]= b,ne[idx]= h[a],w[idx]= c,h[a]= idx++;}intdjistra(){dist[1]=0;q.push({0,1});while(q.size()!=0){PII t = q.top();q.pop();int v = t.second,d = t.first;if(st[v])continue;st[v]=true;for(int i = h[v];i !=-1;i = ne[i]){int j = e[i];if(dist[j]> d + w[i]){dist[j]= d + w[i];q.push({dist[j],j});}}}if(dist[n]==0x3f3f3f3f)return-1;elsereturn dist[n];}intmain(){memset(h,-1,sizeof(h));memset(dist,0x3f,sizeof(dist));cin >> n >> m;for(int i =1;i <= m;++i){int a,b,c;cin >> a >> b >> c;add(a,b,c);}cout <<djistra()<< endl;return0;}
(2)floyd
#include<iostream>#include<cstring>usingnamespace std;constint N =205;int p[N][N];int n,m,k;voidfloyd(){for(int k =1;k <= n;++k){for(int i =1;i <= n;++i){for(int j =1;j <= n;++j){if(p[i][j]> p[i][k]+ p[k][j]) p[i][j]= p[i][k]+ p[k][j];}}}}intmain(){cin >> n >> m >> k;memset(p,0x3f,sizeof(p));for(int i =1;i <= n;++i) p[i][i]=0;for(int i =1;i <= m;++i){int a,b,c;cin >> a >> b >> c;p[a][b]=min(p[a][b],c);}floyd();while(k--){int a,b;cin >> a >> b;if(p[a][b]>0x3f3f3f3f/2) cout <<"impossible"<< endl;else cout << p[a][b]<< endl;}return0;}
(3)spfa
#include<iostream>#include<cstring>#include<queue>usingnamespace std;constint N =1e6+10;int dist[N];int h[N],e[N],ne[N],w[N],idx;bool st[N];int n,m;voidadd(int a,int b,int c){e[idx]= b,ne[idx]= h[a],w[idx]= c,h[a]= idx++;}voidspfa(){queue<int>q;dist[1]=0;st[1]=true; q.push(1);while(q.size()!=0){auto t = q.front();q.pop();st[t]=false;for(int i = h[t]; i !=-1; i = ne[i]){int j = e[i];if(dist[j]> dist[t]+ w[i]){dist[j]= dist[t]+ w[i];if(st[j])continue;st[j]=true;q.push(j);}}}if(dist[n]==0x3f3f3f3f) cout <<"impossible"<< endl;else cout << dist[n]<< endl;}intmain(){memset(h,-1,sizeof(h));memset(dist,0x3f,sizeof(dist));cin >> n >> m;for(int i =1;i <= m;++i){int a,b,c;cin >> a >> b >> c;add(a,b,c);}spfa();return0;}
(4)树的遍历
#include<iostream>#include<cstring>usingnamespace std;constint N =1e5+10;bool st[N];int e[N *2],ne[N *2],h[N *2],idx =0;int n,ans =0x3f3f3f3f;voidadd(int a,int b){e[idx]= b,ne[idx]= h[a],h[a]= idx++;}intdfs(int u){st[u]=true;int sum =0,tot =-1;for(int i = h[u];i !=-1;i = ne[i]){int j = e[i];if(st[j]){int k =dfs(j);sum += k;tot =max(tot,k);}}tot =max(n -1- sum,tot);ans =min(tot,ans);return sum +1;}intmain(){memset(h,-1,sizeof(h));cin >> n;for(int i =1;i <= n-1;++i){int a,b;cin >> a >> b;add(a,b);add(b,a);}dfs(1);cout << ans << endl;return0;}
(5)图的遍历
#include<iostream>#include<cstring>#include<queue>usingnamespace std;constint N =1e5+10;int ne[N],h[N],e[N],idx =0;int dist[N];bool st[N];int n,m;voidadd(int a,int b){e[idx]= b,ne[idx]= h[a],h[a]= idx++;}voidbfs(int u){st[u]=true;queue<int>q;q.push(1);while(q.size()!=0){int t = q.front();q.pop();st[t]=true;for(int i = h[t]; i !=-1; i = ne[i]){int j = e[i];if(st[j])continue;if(dist[j]> dist[t]+1) dist[j]= dist[t]+1;q.push(j);}}return;}intmain(){memset(h,-1,sizeof(h));memset(dist,0x3f,sizeof(dist));cin >> n >> m;for(int i =1;i <= m;++i){int a,b;cin >> a >> b;add(a,b);}dist[1]=0;bfs(1);if(dist[n]==0x3f3f3f3f) cout <<"-1"<< endl;else cout << dist[n]<< endl;return0;}
(6)拓扑序列
#include<iostream>#include<cstring>#include<vector>#include<queue>usingnamespace std;constint N =1e5+10;int in[N];int h[N],ne[N],e[N],idx =0;bool st[N];vector<int>ans;int n,m;voidadd(int a,int b){e[idx]= b,ne[idx]= h[a],h[a]= idx++;}voidbfs(){ queue<int>q;for(int i =1;i <= n;++i)if(in[i]==0) q.push(i);while(q.size()!=0){int t = q.front();q.pop();ans.push_back(t);for(int i = h[t];i !=-1;i = ne[i]){int j = e[i];in[j]--;if(in[j]==0) q.push(j);}}return;}intmain(){memset(h,-1,sizeof(h));cin >> n >> m;for(int i =1;i <= m;++i){int a,b;cin >> a >> b;in[b]++;add(a,b);}bfs();if(ans.size()!= n) cout <<"-1"<< endl;else{for(int i =0;i < n;++i) cout << ans[i]<<' ';}return0;}
Quick Service Setup界面使用户能够使用最少的参数快速配置和编辑简单的应用程序服务。Alteon自动为虚拟服务创建所需的对象(虚拟服务器、服务器组、真实服务器、SSL策略、FastView策略等)。通过快速服务设置,您可以配置HTTP, HTTPS,基本slb(第4层TCP或U…