[分享] Codility demo sample

楼主: babelism (Bob)   2018-09-03 22:08:06
说是心得嘛... 当灌水也行XD
这是 Codility 的 demo sample,
提供一个满分解答。
(Codility 是程设训练平台,某些公司会用这个平台来面试)
====================
This is a demo task.
Write a function:
int solution(vector<int> &A);
that, given an array A of N integers, returns the smallest positive integer
(greater than 0) that does not occur in A.
For example, given A = [1, 3, 6, 4, 1, 2], the function should return 5.
Given A = [1, 2, 3], the function should return 4.
Given A = [-1, -3], the function should return 1.
Write an efficient algorithm for the following assumptions:
N is an integer within the range [1..100,000];
each element of array A is an integer within the range
[-1,000,000..1,000,000]
给分的重点在于运算速度要快、对于上下限的处理要明确、
Compile 连 warning 都不能。时间复杂度在 O(N^2) 以上的都不及格。
限时30分钟。
==================== 范例码在下面 ====================
int solution(vector<int> &A) {
// write your code in C++14 (g++ 6.2.0)
if (A.size() > 100000)
{
return 100001;
}
if (A.empty())
{
return 1;
}
bool ba[A.size()] = {false};
for (unsigned int ix = 0; ix < A.size(); ix++)
{
if (A[ix] < 1)
{
continue;
} else
{
if ((unsigned int)A[ix] > A.size())
{
continue;
}
}
ba[A[ix]-1] = true;
}
for (unsigned int ix = 0; ix < A.size(); ix++)
{
if (ba[ix] == false)
{
return ix+1;
}
}
return A.size() + 1;
}
作者: fatrabitree (胖兔子)   2018-09-03 22:20:00
第一个if题目有提吗
作者: a21802 (NEC)   2018-09-03 22:23:00
如果只是要最小正整数 从1开始跑发现不在A里直接跳出不是更好吗还是我漏了什么我的想法会造成双层循环 请无视
作者: alan23273850   2018-09-04 09:54:00
总觉得开阵列解的方法有点弱,有没有不用阵列的方法?
作者: sarafciel (Cattuz)   2018-09-04 10:41:00
空间复杂度O(1)的话就快排后扫一遍吧 会慢一点就是
作者: adrianshum (Alien)   2018-09-04 12:25:00
严格来说这个的空间复杂度也是O(1) 吧,只是 constantterm 很大而已对不起,请无视,我看错code 每次都allocate bool[100000] 了
作者: oToToT (屁孩)   2018-09-04 18:52:00
不是该用size_t吗OAO顺便问一下原来现在可以直接宣告bool A[(non constant)]?
作者: alan23273850   2018-09-05 06:50:00
原po后来回的那篇STL解法时间应该是O(nlgn)吧
作者: sarafciel (Cattuz)   2018-09-05 10:25:00
C99的话VLA已经是标准了 C++目前还是不行的样子
作者: alan23273850   2018-09-05 15:25:00
cutekid 大大刚刚有水球我说排序过后不用那个 do-while 循环,可以 linear time 扫过去,请各位检查看看是不是如此,不过还是 O(nlgn) 就是
作者: sarafciel (Cattuz)   2018-09-05 19:34:00
是的 直接循环扫一遍就好了 原PO这样写其实二分搜寻没有发挥到 时间复杂度的瓶颈在sort上 所以依然是O(nlgn)
作者: alvinpon   2018-09-09 10:37:00

Links booklink

Contact Us: admin [ a t ] ucptt.com