반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- upper_bound
- 이분탐색
- BOJ
- OFFSET
- @P0
- incr
- 파라메트릭
- 퇴사통보
- boj #19237 #어른 상어
- dfs
- 물채우기
- Docker
- 백준
- Kafka
- 연결요소
- 소프티어
- 처우협의
- 처우산정
- 매개변수탐색
- 백트래킹
- 경력
- softeer
- 13908
- msSQL
- 기술면접
- 성적평가
- 6987
- 오퍼레터
- compose
- BFS
Archives
- Today
- Total
기술 블로그
2212번 센서 본문
728x90
반응형
https://www.acmicpc.net/problem/2212
k개의 집중국을 세울 때, (k-1)개의 빈 공간이 생긴다.
집중국을 점으로 생각하고, 종이에 그려보면서 생각하자.
그럼 k-1개의 빈 공간이(길이가) 가장 클 때 우리가 원하는 각 집중국의 수신 영역 길이(빈 공간을 제외한 나머지 공간(길이))의 합을 구할 수 있다.
즉, 길이가 가장 큰 것을 빈 공간으로 하고 이것을 덧셈에서 빼주면 된다.
길이를 담은 d vector의 size()에서 (k-1)번 덜 실행하여 누적 덧셈을 하면 된다.
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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 | import java.io.*; import java.util.*; public class Main { static int n, k, ans = 0; static Vector<Integer> v = new Vector<Integer>(); static Vector<info> d = new Vector<info>(); public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out)); StringTokenizer st; n = Integer.parseInt(br.readLine()); k = Integer.parseInt(br.readLine()); st = new StringTokenizer(br.readLine()); for(int i=0; i<n; i++) { int input = Integer.parseInt(st.nextToken()); v.add(input); } Collections.sort(v); for(int i=0; i<n - 1; i++) { d.add(new info(v.get(i + 1) - v.get(i), v.get(i), v.get(i+1))); } Collections.sort(d, new Comparator<info>(){ public int compare(info a, info b) { return Integer.compare(a.dist, b.dist); } }); for(int i=0; i<d.size() - k + 1; i++) { ans += d.get(i).dist; } bw.write(String.valueOf(ans) + "\n"); bw.flush(); bw.close(); } } class info { int dist, s, e; info(int dist, int s, int e) { this.dist = dist; this.s = s; this.e = e; } } | cs |
728x90
반응형
'알고리즘 문제 > BOJ' 카테고리의 다른 글
1911번 흙길 보수하기 (0) | 2020.01.10 |
---|---|
1459번 걷기 (0) | 2020.01.10 |
10165번 버스 노선 (0) | 2020.01.08 |
10166번 관중석 (0) | 2020.01.08 |
10164번 격자상의 경로 (0) | 2020.01.07 |