1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
| #include<bits/stdc++.h> using namespace std; const int max_n=1000006; inline int read(){ int x=0;bool w=0;char c=getchar(); while(c<'0' || c>'9') w|=c=='-',c=getchar(); while(c>='0' && c<='9') x=(x<<1)+(x<<3)+(c^48),c=getchar(); return w?-x:x; } inline void write(int x){ if(x<0) putchar('-'),x=-x; if(x>9) write(x/10); putchar(x%10^48); }
int n,m,Q;
struct Deque{ int l,r,q[max_n*3]; int f[max_n*3],g[22],h[max_n*3][22],pos[max_n]; Deque(){l=1000006,r=1000005;} inline void ask(){ for(register int i=21;i>=0;--i) if(g[i]){ write(i),putchar(' '),write(g[i]),putchar('\n'); break; } } inline void push_front(int x){ q[--l]=x,pos[x]=l; memset(h[l],0,sizeof(h[l])),f[l]=h[l][1]=1; for(register int i=x*2;i<=m;i+=x) if(pos[i]>l){ ++h[l][f[pos[i]]+1], f[l]=max(f[l],f[pos[i]]+1); } ++g[f[l]]; } inline void pop_front(){ --g[f[l]],pos[q[l++]]=0; } inline void upd(int x,int val,int dat){ g[val]+=dat; for(register int i=1;i*i<=x;++i){ if(x%i!=0) continue; if(pos[i]<pos[x]) h[pos[i]][val+1]+=dat; if(i*i<x && pos[x/i] && pos[x/i]<pos[x]) h[pos[x/i]][val+1]+=dat; } } int tmp[max_n*3],a[max_n*3],tot; inline void push(int x){ tot=0; for(register int i=1;i*i<=x;++i){ if(x%i!=0 || !pos[i]) continue; tmp[pos[i]]=f[pos[i]], a[++tot]=i; } for(register int i=sqrt(x);i>=1;--i){ if(x%i!=0 || !pos[x/i]) continue; if(i*i<x && pos[x/i]){ tmp[pos[x/i]]=f[pos[x/i]]; a[++tot]=x/i; } } } inline void push_back(int x){ q[++r]=x,pos[x]=r; memset(h[r],0,sizeof(h[r])),f[r]=h[r][1]=1; upd(x,f[r],1),push(x); for(register int i=tot;i>=1;--i) if(pos[a[i]]){ for(register int j=21;j>=0;--j) if(h[pos[a[i]]][j]){ f[pos[a[i]]]=j; break; } if(f[pos[a[i]]]!=tmp[pos[a[i]]]) upd(a[i],tmp[pos[a[i]]],-1), upd(a[i],f[pos[a[i]]],1); } } inline void pop_back(){ upd(q[r],f[r],-1),push(q[r]); for(register int i=tot;i>=1;--i) if(pos[a[i]]){ for(register int j=21;j>=0;--j) if(h[pos[a[i]]][j]){ f[pos[a[i]]]=j; break; } if(f[pos[a[i]]]!=tmp[pos[a[i]]]) upd(a[i],tmp[pos[a[i]]],-1), upd(a[i],f[pos[a[i]]],1); } pos[q[r]]=0,f[r--]=0; } inline void init(){ for(register int i=1;i<=n;++i) push_back(read()); ask(); } }q;
signed main(){ n=read(),m=read(),Q=read(),q.init(); while(Q--){ int op=read(); if(op==0) q.push_front(read()); if(op==1) q.push_back(read()); if(op==2) q.pop_front(); if(op==3) q.pop_back(); q.ask(); } return 0; }
|