abhikolar1512's blog

By abhikolar1512, history, 6 years ago, In English

Suppose we are given an Array A of size N (N<=100000) and each element of array A[i]<=100000. Now I want to find index of rightmost element 'j' in subarray A[1]....A[i-1] for each A[i] such that gcd(A[j],A[i]) is 1 i.e. both are relatively comprime. How can this be done efficiently?

  • Vote: I like it
  • +6
  • Vote: I do not like it

| Write comment?
»
6 years ago, # |
Rev. 2   Vote: I like it +5 Vote: I do not like it

Can you give me Problem link.

»
6 years ago, # |
  Vote: I like it 0 Vote: I do not like it

a similar problem was given at CEOI 2016, there's an explanation to that problem here http://codeforces.com/blog/entry/46120

»
6 years ago, # |
  Vote: I like it 0 Vote: I do not like it

I think this problem appeared in a recent contest. Can you provide the link ?