ZQUERY - Zero Query


Cho một dãy số gồm N phần tử, mỗi phần tử bằng -1 hoặc 1.

M truy vấn, mỗi truy vấn gồm hai số LR, bạn cần tìm độ dài của dãy con liên tiếp dài nhất trong phạm vi từ L đến R (gồm cả L và R) mà có tổng bằng 0.

Input

Dòng đầu tiên chứa hai số nguyên NM (1 <= N, M <= 50000) - số lượng phần tử của dãy số và số lượng truy vấn.

Dòng thứ hai chứa N số - các phần tử của dãy số, mỗi phần tử bẳng -1 hoặc 1.

Trong M dòng tiếp theo, mỗi dòng chứa hai số nguyên LR (1 <= L <= R <= N).

Output

Với mỗi truy vấn, in ra độ dài của dãy số dài nhất thoả mãn yêu cầu. Nếu không có dãy nào phù hợp, in ra 0.

Ví dụ

  Input:
  6 4
  1 1 1 -1 -1 -1
  1 3
  1 4
  1 5
  1 6
  Output:
  0
  2
  4
  6


hide comments
leapfrog: 2021-02-07 12:57:47

stO provicy Orz

evoiz963: 2019-02-27 22:26:10

good one but when i use set my code take to match but it get ac when i use dequeue it take lease time but it's still to big i think best idea to implement container that help you in this problem
and try this test:
4 1
1 1 -1 1
3 4
ans=2

DOT: 2018-01-06 12:59:39

Woah! Took so much of time trying to fix minor bugs. Finally AC. :)
People trying to build up on QCHEF solution, ensure you're handling the number before the start of the current block as well.

shubham: 2017-11-04 21:45:06

Problem can be reduced to
https://www.codechef.com/problems/QCHEF

starbot: 2017-10-10 21:36:26

@What Does The Fox Say? my submission id 20336783 is getting tle...However i think my solutions complexity is O(M*root(N)*Log(N))...could please look into it;

mahmud2690: 2017-07-31 15:38:24

Really interesting problem. Can be solved without MO :)

rajeev_899: 2017-06-29 07:20:49

what will be the answer for this
6 1
-1 1 1 1 1 -1
1 6

answer must be 2 isn't it?
but the AC solution giving answer 4 and still AC how???

Last edit: 2017-06-29 07:21:40
_________++++__________: 2017-02-01 20:38:43

Great question to understand MO algorithm

titanlord89: 2016-10-17 12:00:40

Someone please have a look at my code. It WAs even though it passes everything I throw at it.
Problem code: 17951896
I'm using MO's algorithm and summing.

Last edit: 2016-10-17 12:01:17
ziadxkabakibi: 2016-08-15 14:48:20

Nice One ! can be solved using mo and binary search :D


Added by:What Does The Fox Say?
Date:2014-08-07
Time limit:2s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: ASM64