How to solve this HARD issue

1. Problem:

A non-empty zero-indexed array A consisting of N integers is given.

peak is an array element which is larger than its neighbours. More precisely, it is an index P such that 0 < P < N − 1 and A[P − 1] < A[P] > A[P + 1].

For example, the following array A:

    A[0] = 1
A[1] = 5
A[2] = 3
A[3] = 4
A[4] = 3
A[5] = 4
A[6] = 1
A[7] = 2
A[8] = 3
A[9] = 4
A[10] = 6
A[11] = 2

has exactly four peaks: elements 1, 3, 5 and 10.

You are going on a trip to a range of mountains whose relative heights are represented by array A, as shown in a figure below. You have to choose how many flags you should take with you. The goal is to set the maximum number of flags on the peaks, according to certain rules.

Flags can only be set on peaks. What's more, if you take K flags, then the distance between any two flags should be greater than or equal to K. The distance between indices P and Q is the absolute value |P − Q|.

For example, given the mountain range represented by array A, above, with N = 12, if you take:

  • two flags, you can set them on peaks 1 and 5;
  • three flags, you can set them on peaks 1, 5 and 10;
  • four flags, you can set only three flags, on peaks 1, 5 and 10.

You can therefore set a maximum of three flags in this case.

Write a function:

int solution(int A[], int N);

that, given a non-empty zero-indexed array A of N integers, returns the maximum number of flags that can be set on the peaks of the array.

For example, the following array A:

    A[0] = 1
A[1] = 5
A[2] = 3
A[3] = 4
A[4] = 3
A[5] = 4
A[6] = 1
A[7] = 2
A[8] = 3
A[9] = 4
A[10] = 6
A[11] = 2

the function should return 3, as explained above.

Assume that:

  • N is an integer within the range [1..200,000];
  • each element of array A is an integer within the range [0..1,000,000,000].

Complexity:

  • expected worst-case time complexity is O(N);
  • expected worst-case space complexity is O(N), beyond input storage (not counting the storage required for input arguments).

Elements of input arrays can be modified.

Copyright 2009–2015 by Codility Limited. All Rights Reserved. Unauthorized copying, publication or disclosure prohibited.
 
2. Dig into this issue
    最初我认为这个问题非常复杂,需要牵涉到例如两点间最小距离啊,删除节点啊,对peak间的间距进行排序啊等等问题。
    不过在我看到时间复杂度要求为O(N)时,我觉得我还是想多了。
 
    通过数学我们可以得出,如果dis = 最后一个peak与第一个peak之间的距离,那么(k-1)*k<dis;
    于是我们就可以算出最大可能的k,而k与dis成√的关系,于是如果按照k的scale进行循环,那么我们就成功的减少了运算的时间复杂度。
 
    对于每一个k来说,最容易实现的方法肯定是从最左边的peak向右查找(因为如果从下一个开始,dis减少,k也会变少)。所以我们从最左边peak开始
   ,加上一个k,得到下一步,在这个点上寻找下一个peak,在依次向下搜索,直到找到的peak数等于k,完成,或者找不到下一个peak了(k过大),那么k-1,重复
   上层操作。
    
     这个操作在时间复杂度上还有一个技术障碍,就是在i位置寻找下一个peak需要O(N)级别的操作,我们如何将它变为O(1)级别的操作呢?
     用一个数组即可。
     我们首先遍历这个A,找出所有peak所在位置。然后定义一个数组nextpeak[],对于nextpeak[i],代表从i位置往后(包括i位置),所找到的第一个peak。
     通过O(N)的空间,我们就可以将找nextpeak的操作降为O(1)级别。
 
     这样通过我们上述的循环算法,总能找到k解。而且通过具体的验证,这个算法的时间复杂度是O(N)级别的。
 3.结果:
    
 
4.源代码为:

// you can write to stdout for debugging purposes, e.g.
// printf("this is a debug message\n"); int solution(int A[], int N) {
// write your code in C99
int i = ;
// 每一个节点是否为peak
int isPeak[N];
isPeak[]=;
isPeak[N-]=;
// peak个数
int count = ;
for(i=;i<N-;i++)
{
if(A[i]>A[i-]&&A[i]>A[i+])
{
isPeak[i]=;
count++;
}
else
{
isPeak[i]=;
}
}
//如果peak为0,那么直接退出没商量
if(count == )
{
return ;
}
//放入相应peak的位置。
int peak[count]; int j=;
for(i=;i<N;i++)
{
if(isPeak[i]==)
{
peak[j]=i;
j++;
}
} int dis = peak[count-]-peak[]; //最大可能k
int maxk =;
while((maxk-)*maxk<dis)
{
maxk++;
}
if((maxk-)*maxk!=dis)
maxk--; // 存入在i节点处下一个peak的位置,如果不存在下一个peak,为-1;
int nextpeak[N]; j=count-;
int temp = -;
for(i=N-;i>;i--)
{
if(i>peak[j])
{
nextpeak[i]=temp;
}
else
{
temp = peak[j];
j--;
nextpeak[i]=temp;
}
// printf("%d ",nextpeak[i]);
} //从 maxk,向下搜索,直到找出一个i(k)满足条件
int start = peak[];
int nodes = ;
for(i=maxk;i>;i--)
{
while(nodes<i)
{
start = start+i;
if(start > N-)
{
break;
}
start = nextpeak[start];
// printf("\n%d ",start);
if(start == -)
{
break;
}
else
{
nodes++;
}
}
if(nodes == i)
{
return i;
}
else
{
nodes = ;
start = peak[];
}
} return nodes;
}

codility flags solution的更多相关文章

  1. Codility NumberSolitaire Solution

    1.题目: A game for one player is played on a board consisting of N consecutive squares, numbered from ...

  2. Solution of NumberOfDiscIntersections by Codility

    question:https://codility.com/programmers/lessons/4 this question is seem like line intersections qu ...

  3. Solution to Triangle by Codility

    question: https://codility.com/programmers/lessons/4 we need two parts to prove our solution. on one ...

  4. the solution of CountNonDivisible by Codility

    question:https://codility.com/programmers/lessons/9 To solve this question , I get each element's di ...

  5. GenomicRangeQuery /codility/ preFix sums

    首先上题目: A DNA sequence can be represented as a string consisting of the letters A, C, G and T, which ...

  6. *[codility]Peaks

    https://codility.com/demo/take-sample-test/peaks http://blog.csdn.net/caopengcs/article/details/1749 ...

  7. *[codility]Country network

    https://codility.com/programmers/challenges/fluorum2014 http://www.51nod.com/onlineJudge/questionCod ...

  8. *[codility]AscendingPaths

    https://codility.com/programmers/challenges/magnesium2014 图形上的DP,先按照路径长度排序,然后依次遍历,状态是使用到当前路径为止的情况:每个 ...

  9. *[codility]MaxDoubleSliceSum

    https://codility.com/demo/take-sample-test/max_double_slice_sum 两个最大子段和相拼接,从前和从后都扫一遍.注意其中一段可以为0.还有最后 ...

随机推荐

  1. Android开发用过的十大框架

    http://blog.csdn.net/u011200604/article/details/51695096 本文系多方综合与转载整合,意在Android开发中能够知道和使用一些好用的第三方支持, ...

  2. lydsy 2600(二分+中位数前缀和)米仓

    2600: [Ioi2011]ricehub Time Limit: 10 Sec  Memory Limit: 128 MBSubmit: 691  Solved: 359[Submit][Stat ...

  3. JAVA设计模式之3-抽象工厂模式

    书接上文,简单工厂模式解决的是可以枚举种类的类的问题,但是带来了高耦合的问题,并且对类系列繁多无从下手,那么我们想起了一种方法,那就是抽象类,建一个抽象工厂,抽象工厂里的方法都是根据系列类的差异区分出 ...

  4. linux查看cpu 命令

    总核数 = 物理CPU个数 * 每颗物理CPU的核数 总逻辑CPU数 = 物理CPU个数 * 每颗物理CPU的核数 * 超线程数 查看物理CPU个数 cat /proc/cpuinfo| grep & ...

  5. IT培训行业揭秘(二)

    培训机构与高校之间是怎么"勾结"的? 每一个做院招的培训机构通常会有一个“院校关系”部门,这个部门就是专门为培训机构做疏通培训班与高校之间的关系的,通常这个部门都会拥有一张各大高校 ...

  6. 在Unity环境下使用抽象和接口

    http://gamasutra.com/blogs/VictorBarcelo/20131217/207204/Using_abstractions_and_interfaces_with_Unit ...

  7. canvas钟表

    <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title> ...

  8. 篇三:访问JSON静态文件

    背景:在定位的时候带出车牌号的前两位,这里就有一个地址和车牌号前两位的映射关系,这个映射关系起初是通过Ajax在页面加载的时候请求去数据库里面查出来赋给一个变量,然后去操作,但是这个过程通常需要4~7 ...

  9. Sql 2008 的常用函数

    1.LEN 函数:返回数据的长度 ') 返回:8 2.ASCII函数:返回字符串最左边的ascii值 SELECT ASCII('abc') 返回:97 3.LEFT函数:从左边开始截取指定长度的字符 ...

  10. 通过维基API实现维基百科查询功能

    通过英文维基的免费API,可以实现对维基百科的搜索查询或者标题全文查询等,尝试了一下通过title实现全文查询,返回的结果是wikitext格式,暂时不知道该如何应用,所以仅实现了查询功能,可以返回最 ...