Problem
You are given two non-empty arrays A and B consisting of N integers. Arrays A and B represent N voracious fish in a river, ordered downstream along the flow of the river.
The fish are numbered from 0 to N − 1. If P and Q are two fish and P < Q, then fish P is initially upstream of fish Q. Initially, each fish has a unique position.
Fish number P is represented by A[P] and B[P]. Array A contains the sizes of the fish. All its elements are unique. Array B contains the directions of the fish. It contains only 0s and/or 1s, where:
- 0 represents a fish flowing upstream,
- 1 represents a fish flowing downstream.
If two fish move in opposite directions and there are no other (living) fish between them, they will eventually meet each other. Then only one fish can stay alive − the larger fish eats the smaller one. More precisely, we say that two fish P and Q meet each other when P < Q, B[P] = 1 and B[Q] = 0, and there are no living fish between them. After they meet:
- If A[P] > A[Q] then P eats Q, and P will still be flowing downstream,
- If A[Q] > A[P] then Q eats P, and Q will still be flowing upstream.
We assume that all the fish are flowing at the same speed. That is, fish moving in the same direction never meet. The goal is to calculate the number of fish that will stay alive.
For example, consider arrays A and B such that:
A[0] = 4 B[0] = 0 A[1] = 3 B[1] = 1 A[2] = 2 B[2] = 0 A[3] = 1 B[3] = 0 A[4] = 5 B[4] = 0
Initially all the fish are alive and all except fish number 1 are moving upstream. Fish number 1 meets fish number 2 and eats it, then it meets fish number 3 and eats it too. Finally, it meets fish number 4 and is eaten by it. The remaining two fish, number 0 and 4, never meet and therefore stay alive.
Write a function:
int solution(vector<int> &A, vector<int> &B);
that, given two non-empty arrays A and B consisting of N integers, returns the number of fish that will stay alive.
For example, given the arrays shown above, the function should return 2, as explained above.
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 [0..1,000,000,000];
- each element of array B is an integer that can have one of the following values: 0, 1;
- the elements of A are all distinct.
Copyright 2009–2020 by Codility Limited. All Rights Reserved. Unauthorized copying, publication or disclosure prohibited.
How to solve
- 정보
배열 A: 물고기 크기
배열 B: 물고기 방향 (0: 상류, 1:하류)
idx: 각 물고기의 번호, idx가 작을수록 강의 상류에 있음
두 물고기가 서로 다른 방향으로 움직이고, 만날 때 큰 물고기가 작은 물고기를 잡아먹는다.
- 구해야 하는것?
살아있는 물고기의 수
- 풀이
하류로 이동하는 물고기 (B[idx] == 1)을 stack에 담는다
상류로 이동하는 물고기를 만날 때 사이즈 비교
하류로 이동하는 물고기가 있으면(stack 이 비어있지 않으면) 사이즈 비교를 하고,
stack의 top보다 상류로 이동하는 물고기가 더 클 경우 stack에서 pop
상류로 올라가는 경우가 하류로 내려오는 물고기보다 클 경우 stack은 비고, 상류로 올라가는 물고기 수 증가
Solution(c++)
// you can use includes, for example:
#include <bits/stdc++.h>
// you can write to stdout for debugging purposes, e.g.
// cout << "this is a debug message" << endl;
int solution(vector<int> &A, vector<int> &B) {
// write your code in C++14 (g++ 6.2.0)
int len = A.size();
stack<int> st;
int count = 0;
for(int i=0; i<len; i++){
if(B[i] == 1){
// 하류로 가는 물고기
st.push(A[i]);
}else{
// 상류로 가는 물고기
while(!st.empty()){
if(st.top()<A[i]){
st.pop();
}else{
break;
}
}
if(st.empty()){
count++;
}
}
}
return count + st.size();
}
Test Result
app.codility.com/demo/results/training8QTQMA-BMV/
'SW > 알고리즘 문제풀이' 카테고리의 다른 글
[Codility] Lesson8 - Leader : Dominator (c++) (0) | 2021.01.04 |
---|---|
[Codility] Lesson7 - Stacks and Queues : Nesting (0) | 2020.12.28 |
[Codility] Lesson6 - Sorting: Max Product of Three (1) | 2020.12.23 |
[Codility] Lesson6 - Sorting: Distinct (0) | 2020.12.22 |
[Codility] Lesson5 - Prefix Sums: Genomic Range Query (0) | 2020.12.21 |
댓글