【思维题】Eugeny and Array(关于c++加速器的应用)

Eugeny has array a = a1, a2, …, an, consisting of n integers. Each integer ai equals to -1, or to 1. Also, he has m queries:

Query number i is given as a pair of integers li, ri (1 ≤ li ≤ ri ≤ n).
The response to the query will be integer 1, if the elements of array a can be rearranged so as the sum ali + ali + 1 + … + ari = 0, otherwise the response to the query will be integer 0.
Help Eugeny, answer all his queries.

Input
The first line contains integers n and m (1 ≤ n, m ≤ 2·105). The second line contains n integers a1, a2, …, an (ai = -1, 1). Next m lines contain Eugene’s queries. The i-th line contains integers li, ri (1 ≤ li ≤ ri ≤ n).

Output
Print m integers — the responses to Eugene’s queries in the order they occur in the input.

Examples
Input
2 3
1 -1
1 1
1 2
2 2
Output
0
1
0
Input
5 5
-1 1 1 1 -1
1 1
2 3
3 5
2 5
1 5
Output
0
1
0
1
0
题意:
先给n个元素为1或-1的序列,再来m个不同区间的询问,问在长度为n的序列可以任意排列的情况下,每个询问的区间数之和是否能为0,若能输出1,否则输出0

思路:
区间长度为偶数且序列中1和-1的数目都大于等于区间长度一半时能输出1,其他情况输出0

特别说明:
解法很好想到,提交就TLE
上网借鉴呗,先找到这位兄弟的
https://blog.csdn.net/qq_40829288/article/details/80344545
他写了两个形式,第一个TLE了,第二个过了…
s(っ °Д °;)っ
大家写的都几乎一样啊,不就是我用的是cpp嘛…
问题就出在c++的输入输出上…
具体内容上网查,目前我也不搞得不是很清楚,可以借鉴这篇:
https://blog.csdn.net/alex123980/article/details/51836550
简单来说,可以加一个一行“加速器”:
ios::sync_with_stdio(false);
加上这行代码就过了

具体代码如下(c++版):

#include <iostream>
using namespace std;
int main()
{
	ios::sync_with_stdio(false);//c++加速语句 
	int n,m;
	int x,y,a,b,i;
	cin>>n>>m;
	a=0,b=0;
	for(i=0;i<n;i++)
	{
		cin>>x;
		if(x==1) a++;
		else b++;
	}
	for(i=0;i<m;i++)
	{
		cin>>x>>y;
		if((y-x+1)%2==0&&(y-x+1)/2<=a&&(y-x+1)/2<=b)
		cout<<"1"<<endl;
		else
		cout<<"0"<<endl;
	}
	return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值