일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- espresso
- 안드로이드개발레벨업교과서
- binding adapter
- 스와이프
- fragment
- IntentTestRule
- Fragment에서 Activity의 함수 사용하기
- 재사용
- 뷰변경 감지
- adapter
- 고차함수
- ActivityTestRule
- searchview
- 안드로이드
- 리사이클러뷰
- 코딜리티
- viewholder
- 코틀린
- 테마 아이콘
- 생명주기
- Fragment 수동 추가
- 구분선
- Android
- ui test
- high order function
- 안드로이드스튜디오
- 안드로이드13
- Error:Execution failed for task ':app:mergeDebugResources'
- recyclerview
- LayoutManger
- Today
- Total
룬아님의 취중코딩
Codility 17번 NumberOfDiscIntersections 본문
NumberOfDiscIntersections
We draw N discs on a plane. The discs are numbered from 0 to N − 1. An array A of N non-negative integers, specifying the radiuses of the discs, is given. The J-th disc is drawn with its center at (J, 0) and radius A[J].
We say that the J-th disc and K-th disc intersect if J ≠ K and the J-th and K-th discs have at least one common point (assuming that the discs contain their borders).
The figure below shows discs drawn for N = 6 and A as follows:
A[0] = 1 A[1] = 5 A[2] = 2 A[3] = 1 A[4] = 4 A[5] = 0
There are eleven (unordered) pairs of discs that intersect, namely:
- discs 1 and 4 intersect, and both intersect with all the other discs;
- disc 2 also intersects with discs 0 and 3.
Write a function:
class Solution { public int solution(int[] A); }
that, given an array A describing N discs as explained above, returns the number of (unordered) pairs of intersecting discs. The function should return −1 if the number of intersecting pairs exceeds 10,000,000.
Given array A shown above, the function should return 11, as explained above.
Write an efficient algorithm for the following assumptions:
- N is an integer within the range [0..100,000];
- each element of array A is an integer within the range [0..2,147,483,647].
Copyright 2009–2019 by Codility Limited. All Rights Reserved. Unauthorized copying, publication or disclosure prohibited.
import java.util.*;
// you can write to stdout for debugging purposes, e.g.
// System.out.println("this is a debug message");
class Solution {
static class Circle implements Comparable<Circle> {
long right;
long left;
Circle(int pos, int length){
right = (long)pos + (long)length;
left = (long)pos - (long)length;
}
@Override
public int compareTo(Circle circle) {
if(this.left > circle.left){
return 1;
} else if(this.left == circle.left){
return Long.compare(this.right, circle.right);
} else{
return -1;
}
}
}
public int solution(int[] A) {
int cnt = 0;
Circle[] circleList = new Circle[A.length];
for (int i = 0; i < A.length; i++) {
circleList[i] = (new Circle(i, A[i]));
}
Arrays.sort(circleList);
for (int i = 0; i < A.length; i++) {
for (int j = i+1; j < A.length; j++) {
if(circleList[i].right >= circleList[j].left){
cnt++;
}else{
break;
}
}
}
return cnt;
}
}
'개발 > 알고리즘' 카테고리의 다른 글
Codility 19번 Fish (0) | 2019.09.09 |
---|---|
Codility 18번 Brackets (0) | 2019.09.02 |
Codility 16번 Triangle (0) | 2019.09.01 |
Codility 13번 MinAvgTwoSlice (0) | 2019.08.28 |
codility 14번 CountDiv (0) | 2019.08.26 |