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 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
| #include<bits/stdc++.h> using namespace std; typedef long long ll; #define N 100010 #define M 1000010 #define ls(p) (p<<1) #define rs(p) (p<<1|1) const int INF=0x3f3f3f3f; struct segment { int l,r; int min,max,prod; } t[N<<2]; struct REC { int xl,xr,yl,yr,o; } rec[M],tmp[M]; int n,m,K; int mn[M],mx[M],prod[M]; pair<int,int> val[N]; bool cmpl(const REC &a,const REC &b) { return a.xl>b.xl; } bool cmpr(const REC &a,const REC &b) { return a.xr<b.xr; } void push_up(int p) { t[p].min=min(t[ls(p)].min,t[rs(p)].min); t[p].max=max(t[ls(p)].max,t[rs(p)].max); t[p].prod=1LL*t[ls(p)].prod*t[rs(p)].prod%K; } void build(int p,int l,int r) { t[p].l=l;t[p].r=r; t[p].min=INF; t[p].max=-INF; t[p].prod=1; if(l==r) return; int mid=l+r>>1; build(ls(p),l,mid); build(rs(p),mid+1,r); } void insert(int p,int x,int y) { if(t[p].l==t[p].r) { t[p].min=min(t[p].min,y); t[p].max=max(t[p].max,y); t[p].prod=1LL*t[p].prod*y%K; return; } int mid=t[p].l+t[p].r>>1; if(x<=mid) insert(ls(p),x,y); else insert(rs(p),x,y); push_up(p); } void ask(int p,int x) { if(rec[x].yl<=t[p].l && t[p].r<=rec[x].yr) { int o=rec[x].o; mn[o]=min(mn[o],t[p].min); mx[o]=max(mx[o],t[p].max); prod[o]=1LL*prod[o]*t[p].prod%K; return; } int mid=t[p].l+t[p].r>>1; if(rec[x].yl<=mid) ask(ls(p),x); if(rec[x].yr>mid) ask(rs(p),x); } void travel(int p) { if(t[p].min==INF) return; t[p].min=INF; t[p].max=-INF; t[p].prod=1; if(t[p].l==t[p].r) return; travel(ls(p)); travel(rs(p)); } void solve(int l,int r,int L,int R) { if(l>r||L>R) return; int mid=l+r>>1; int x=L-1,y=R+1,now=L,j; for(int i=L;i<=R;++i) if(rec[i].xr<mid) tmp[++x]=rec[i]; else if(rec[i].xl>mid) tmp[--y]=rec[i]; else rec[now++]=rec[i]; sort(rec+L,rec+now,cmpl); j=mid+1; for(int i=L;i<now;++i) { while(j>rec[i].xl) { --j; insert(1,val[j].first,val[j].second); } ask(1,i); } travel(1); sort(rec+L,rec+now,cmpr); j=mid; for(int i=L;i<now;++i) { while(j<rec[i].xr) { ++j; insert(1,val[j].first,val[j].second); } ask(1,i); } travel(1); for(int i=L;i<=x;++i) rec[i]=tmp[i]; for(int i=y;i<=R;++i) rec[i]=tmp[i]; solve(l,mid-1,L,x); solve(mid+1,r,y,R); } void read() { int a[2],b[2],c[2],d[2]; int p,q,r,mod; scanf("%d%d%d%d%d%d%d%d%d%d",&m,a,b,c,d,&p,&q,&r,&mod,&K); for(int i=1;i<=m;++i) { a[i&1]=(1LL*p*a[(i&1)^1]+1LL*q*b[(i&1)^1]+r)%mod; b[i&1]=(1LL*p*b[(i&1)^1]+1LL*q*a[(i&1)^1]+r)%mod; c[i&1]=(1LL*p*c[(i&1)^1]+1LL*q*d[(i&1)^1]+r)%mod; d[i&1]=(1LL*p*d[(i&1)^1]+1LL*q*c[(i&1)^1]+r)%mod; rec[i].xl=min(a[i&1]%n,b[i&1]%n)+1; rec[i].xr=max(a[i&1]%n,b[i&1]%n)+1; rec[i].yl=min(c[i&1]%n,d[i&1]%n)+1; rec[i].yr=max(c[i&1]%n,d[i&1]%n)+1; rec[i].o=i; mn[i]=INF; mx[i]=-INF; prod[i]=1; } } int main() { int T; scanf("%d",&T); while(T--) { scanf("%d",&n); for(int i=1;i<=n;++i) { int x,y; scanf("%d%d",&x,&y); val[i]=make_pair(x,y); } build(1,1,n); read(); solve(1,n,1,m); long long ans=0; for(int i=1;i<=m;++i) if(mn[i]!=INF) ans+=prod[i]^mx[i]^mn[i]; printf("%lld\n",ans); } return 0; }
|