CodeForces 863D Yet Another Array Queries Problem

题解:

表面上看是一道大数据结构题,然鹅询问的数量只有100,所以n*m的范围最多只到2e7,这是可以接受的……所以只要暴力就好了,对于每一个询问,反向顺着所有影响到他的操作推回去就可以了。

代码如下:

#include
#define mod 1000000007
using namespace std;

int n,q,m;
int a[200010],qu[200010][3];

int main()
{
	int x;
	scanf("%d%d%d",&n,&q,&m);
	for(int i=1;i<=n;i++) scanf("%d",&a[i]);
	for(int i=1;i<=q;i++) scanf("%d%d%d",&qu[i][0],&qu[i][1],&qu[i][2]);
	for(int i=1;i<=m;i++)
	{
	   scanf("%d",&x);
	   for(int j=q;j;j--) if(x>=qu[j][1]&&x<=qu[j][2])
	   {
	   	  if(qu[j][0]==1){if(x==qu[j][1]) x=qu[j][2];else x--;}
	   	  else x=qu[j][1]+(qu[j][2]-x);
	   }
	   printf("%d ",a[x]);
	}
	puts("");
	return 0;
}

 

你可能感兴趣的:(题解)