CodeForces - 302A Eugeny and Array 【思维】 水题

题目链接:https://cn.vjudge.net/problem/CodeForces-302A

Description:

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 liri (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个数中找出ri-li+1个数,使和为0。 可以输出1,不可以输出0。因为只有-1和1,所以要使得和为0则必有ri-li+1个1和ri-li+1个0。若ri-li+1为奇数肯定不行,为偶数,且(ri-li+1)/2 <= 1的个数 && <= -1的个数,则可以。

AC代码:

#include <iostream>
using namespace std;
int main()
{
	int n,m,pos=0,minus=0,t;
	cin >> n >> m;
	for(int i=0;i<n;i++) {
		cin >> t;
		if(t == 1)
			pos++;
		else
			minus++;
	}
	int l,r,interv;
	for(int i=0;i<m;i++) {
		cin >> l >> r;
		interv = r-l+1;
		if(interv & 1) {
			cout << "0\n";
			continue; 
		}
		interv /= 2;
		if(interv > pos || interv > minus) {
			cout << "0\n";
			continue;
		}
		cout << "1\n";
	}
}

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值